* exec.c (xfer_memory): Add attrib argument.
[deliverable/binutils-gdb.git] / gdb / nlmread.c
index dcc95d912bb2dd908be8933dc1573960f811f5e0..f5073a6a10ecbc65cff952fc49984b237885a4d0 100644 (file)
@@ -108,7 +108,7 @@ nlm_symtab_read (bfd *abfd, CORE_ADDR addr, struct objfile *objfile)
   if (storage_needed > 0)
     {
       symbol_table = (asymbol **) xmalloc (storage_needed);
-      back_to = make_cleanup (free, symbol_table);
+      back_to = make_cleanup (xfree, symbol_table);
       number_of_symbols = bfd_canonicalize_symtab (abfd, symbol_table);
       if (number_of_symbols < 0)
        error ("Can't read symbols from %s: %s", bfd_get_filename (abfd),
This page took 0.023965 seconds and 4 git commands to generate.