diff options
Diffstat (limited to 'src/elflint.c')
| -rw-r--r-- | src/elflint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/elflint.c b/src/elflint.c index 9a1a7179..54aa1114 100644 --- a/src/elflint.c +++ b/src/elflint.c @@ -3213,7 +3213,7 @@ section [%2d] '%s': offset %zu: zero length field in attribute subsection\n"), if (MY_ELFDATA != ehdr->e_ident[EI_DATA]) CONVERT (subsection_len); - if (p - chunk < subsection_len) + if (p - chunk < (ptrdiff_t) subsection_len) { ERROR (gettext ("\ section [%2d] '%s': offset %zu: invalid length in attribute subsection\n"), |
