diff options
author | Alan Modra <amodra@gmail.com> | 2020-06-27 12:47:45 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-06-27 12:55:35 +0930 |
commit | cfc16775b7678e1ad8f9fce048652defd78e3787 (patch) | |
tree | c96a499b820e11d40ef063f32dd3e8243f47ff0b /binutils/elfcomm.c | |
parent | aa57a9d3b6b471e665639a6d927061cbf2529e2e (diff) | |
download | fsf-binutils-gdb-cfc16775b7678e1ad8f9fce048652defd78e3787.zip fsf-binutils-gdb-cfc16775b7678e1ad8f9fce048652defd78e3787.tar.gz fsf-binutils-gdb-cfc16775b7678e1ad8f9fce048652defd78e3787.tar.bz2 |
asan: readelf: use after free in process_archive
This tidies up in cases where fuzzed thin archives hit the error return
path in setup_nested_archive.
* elfcomm.c (setup_nested_archive): Set nested_arch->file to NULL
after freeing.
(release_archive): Set fields of arch to NULL after freeing.
Diffstat (limited to 'binutils/elfcomm.c')
-rw-r--r-- | binutils/elfcomm.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/binutils/elfcomm.c b/binutils/elfcomm.c index 558afa7..37f9dbe 100644 --- a/binutils/elfcomm.c +++ b/binutils/elfcomm.c @@ -727,7 +727,10 @@ setup_nested_archive (struct archive_info *nested_arch, /* Close previous file and discard cached information. */ if (nested_arch->file != NULL) - fclose (nested_arch->file); + { + fclose (nested_arch->file); + nested_arch->file = NULL; + } release_archive (nested_arch); member_file = fopen (member_file_name, "rb"); @@ -748,6 +751,10 @@ release_archive (struct archive_info * arch) free (arch->index_array); free (arch->sym_table); free (arch->longnames); + arch->file_name = NULL; + arch->index_array = NULL; + arch->sym_table = NULL; + arch->longnames = NULL; } /* Get the name of an archive member from the current archive header. |