Re: comdat_hash memory leaks
authorAlan Modra <amodra@gmail.com>
Mon, 28 Aug 2023 11:23:02 +0000 (20:53 +0930)
committerAlan Modra <amodra@gmail.com>
Mon, 28 Aug 2023 12:35:29 +0000 (22:05 +0930)
I missed another field that needs freeing.  Also, oss-fuzz found a
case with a C_FILE sym using multiple auxents for a long file name
which overflowed the single auxent buffer.  I'm going to fix that
problem in swap_aux_in too, but we may as well avoid it here too,
saving unnecessary work.

* coffcode.h (comdat_delf): Free comdat_name.
(fill_comdat_hash): Only look at symbols with one auxent.

bfd/coffcode.h

index 03c1788a1c91bc51cdbdf1ee9acba0cef3b8cfc8..908dc93c64acfbac13d8da286833cb6c0355608c 100644 (file)
@@ -872,6 +872,7 @@ static void
 comdat_delf (void *ent)
 {
   struct comdat_hash_entry *e = ent;
+  free (e->comdat_name);
   free (e->symname);
   free (e);
 }
@@ -964,7 +965,7 @@ fill_comdat_hash (bfd *abfd)
 
       if (*slot == NULL)
        {
-         if (isym.n_numaux == 0)
+         if (isym.n_numaux != 1)
            aux.x_scn.x_comdat = 0;
          else
            {