1
0
Fork 0

ima: Remove semicolon at the end of ima_get_binary_runtime_size()

This patch removes the unnecessary semicolon at the end of
ima_get_binary_runtime_size().

Cc: stable@vger.kernel.org
Fixes: d158847ae8 ("ima: maintain memory size needed for serializing the measurement list")
Signed-off-by: Roberto Sassu <roberto.sassu@huawei.com>
Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
zero-sugar-mainline-defconfig
Roberto Sassu 2020-09-04 11:23:29 +02:00 committed by Mimi Zohar
parent 60386b8540
commit 4be92db3b5
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ unsigned long ima_get_binary_runtime_size(void)
return ULONG_MAX;
else
return binary_runtime_size + sizeof(struct ima_kexec_hdr);
};
}
static int ima_pcr_extend(struct tpm_digest *digests_arg, int pcr)
{