diff options
author | Marcus Nilsson <brainbomb@gmail.com> | 2022-06-22 10:36:03 +0200 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2022-06-22 10:36:03 +0200 |
commit | 4491a7c1aa356887a783c451a5e6cc708112b483 (patch) | |
tree | 4a13c268d4b2fa03b665c658a56e0f037312b4ba /binutils/ChangeLog | |
parent | 46439c90f2000edcb300c85ed843f8930752aed5 (diff) | |
download | binutils-gdb-4491a7c1aa356887a783c451a5e6cc708112b483.tar.gz |
readelf: replace xmalloc with malloc in slurp_relr_relocs
Using xmalloc makes the null check redundant since failing allocation
will exit the program. Instead use malloc and let the error be
conveyed up the call chain.
Diffstat (limited to 'binutils/ChangeLog')
-rw-r--r-- | binutils/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 888d453321b..8ff4e059bf9 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2022-06-22 Marcus Nilsson <brainbomb@gmail.com> + + * readelf.c: (slurp_relr_relocs) Use malloc instead of xmalloc + when allocating space for relocations. + 2022-06-21 Kumar N, Bhuvanendra via Binutils <Kavitha.Natarajan@amd.com> * dwarf.h (struct debug_info): Add rnglists_base field. |