diff options
author | Alan Modra <amodra@gmail.com> | 2019-08-07 23:37:49 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2019-08-08 00:16:05 +0930 |
commit | 7c1c1904bedb8f873731651b420a23f573785728 (patch) | |
tree | dfd8977ec0d6f14abbc5986fde3bc90ba105a26a /binutils/ChangeLog | |
parent | f927cc8faff0d2e39561c90f5182ebe99b2f77f6 (diff) | |
download | gdb-7c1c1904bedb8f873731651b420a23f573785728.zip gdb-7c1c1904bedb8f873731651b420a23f573785728.tar.gz gdb-7c1c1904bedb8f873731651b420a23f573785728.tar.bz2 |
Integer overflows in readelf get_data
I noticed the test for overflow of amt = size * nmemb in get_data
wasn't effective. An obvious example of nmemb = 3 and size = half max
value overflows but doesn't result in amt < nmemb. This patch fixes
this problem and reports a size truncation or overflow rather than out
of memory in more cases.
* readelf.c (get_data): Improve overflow checks.
Diffstat (limited to 'binutils/ChangeLog')
-rw-r--r-- | binutils/ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index c5d2d8f..b60ae64 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2019-08-08 Alan Modra <amodra@gmail.com> + + * readelf.c (get_data): Improve overflow checks. + 2019-08-07 Nick Clifton <nickc@redhat.com> PR 24777 |