]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
ima: Remove redundant conditional operator
authorThiago Jung Bauermann <bauerman@linux.vnet.ibm.com>
Wed, 18 Oct 2017 00:53:14 +0000 (22:53 -0200)
committerMimi Zohar <zohar@linux.vnet.ibm.com>
Wed, 8 Nov 2017 20:16:36 +0000 (15:16 -0500)
commite5729f86a2987c9404f9b2fb494b9a6fc4412baf
treed6900eafd031f85f204f81410e95e41ffbf6778f
parent39adb92598a7466e00f72bb8a197d8811017418a
ima: Remove redundant conditional operator

A non-zero value is converted to 1 when assigned to a bool variable, so the
conditional operator in is_ima_appraise_enabled is redundant.

The value of a comparison operator is either 1 or 0 so the conditional
operator in ima_inode_setxattr is redundant as well.

Confirmed that the patch is correct by comparing the object file from
before and after the patch. They are identical.

Signed-off-by: Thiago Jung Bauermann <bauerman@linux.vnet.ibm.com>
Signed-off-by: Mimi Zohar <zohar@linux.vnet.ibm.com>
security/integrity/ima/ima_appraise.c