diff options
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/readelf.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index d41894f..250108c 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2018-10-16 Alan Modra <amodra@gmail.com> + + PR 23780 + * readelf.c (display_raw_attribute): Correct assertion. + 2018-10-15 Alan Modra <amodra@gmail.com> PR 23534 diff --git a/binutils/readelf.c b/binutils/readelf.c index 41f55ee..fff50c6 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -15221,7 +15221,7 @@ display_raw_attribute (unsigned char * p, unsigned char const * const end) unsigned long addr = 0; size_t bytes = end - p; - assert (end > p); + assert (end >= p); while (bytes) { int j; |