From 3b27a6eecb5bb6089b490258a54e7873aacf6573 Mon Sep 17 00:00:00 2001 From: Steffen Trumtrar Date: Mon, 27 Jan 2020 15:51:49 +0100 Subject: imd: replace magicvalue with sizeof(struct) Instead of using "8" as the size of an imd_header, use the sizeof operator. Signed-off-by: Steffen Trumtrar Signed-off-by: Sascha Hauer --- common/imd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'common') diff --git a/common/imd.c b/common/imd.c index 913a01de87..e0dab69644 100644 --- a/common/imd.c +++ b/common/imd.c @@ -41,7 +41,7 @@ const struct imd_header *imd_next(const struct imd_header *imd) length = imd_read_length(imd); length = ALIGN(length, 4); - length += 8; + length += sizeof(struct imd_header); return (const void *)imd + length; } @@ -63,14 +63,14 @@ static int imd_next_validate(const void *buf, int bufsize, int start_ofs) size = bufsize - start_ofs; - if (size < 8) { + if (size < sizeof(struct imd_header)) { debug("trunkated tag at offset %dd\n", start_ofs); return -EINVAL; } length = imd_read_length(imd); length = ALIGN(length, 4); - length += 8; + length += sizeof(struct imd_header); if (size < length) { debug("tag at offset %d with size %d exceeds bufsize %d\n", -- cgit v1.2.3