read.c s_include: use notes obstack for path
authorAlan Modra <amodra@gmail.com>
Tue, 5 Jul 2022 01:17:48 +0000 (10:47 +0930)
committerAlan Modra <amodra@gmail.com>
Sat, 9 Jul 2022 11:51:48 +0000 (21:21 +0930)
* read.c (s_include): Use notes obstack for path mem.

gas/read.c

index 6472501f5cf3c08754d17955de7e4b1f54113192..71bb30e4e70f5a928d6d8ff52b86c39be99a30d3 100644 (file)
@@ -5879,8 +5879,7 @@ s_include (int arg ATTRIBUTE_UNUSED)
     }
 
   demand_empty_rest_of_line ();
-  path = XNEWVEC (char, (unsigned long) i
-                 + include_dir_maxlen + 5 /* slop */ );
+  path = notes_alloc ((size_t) i + include_dir_maxlen + 5);
 
   for (i = 0; i < include_dir_count; i++)
     {
@@ -5894,10 +5893,9 @@ s_include (int arg ATTRIBUTE_UNUSED)
        }
     }
 
-  free (path);
+  notes_free (path);
   path = filename;
  gotit:
-  /* malloc Storage leak when file is found on path.  FIXME-SOMEDAY.  */
   register_dependency (path);
   input_scrub_insert_file (path);
 }