s/free/xfree/
authorAndrew Cagney <cagney@redhat.com>
Sun, 24 Feb 2002 01:44:00 +0000 (01:44 +0000)
committerAndrew Cagney <cagney@redhat.com>
Sun, 24 Feb 2002 01:44:00 +0000 (01:44 +0000)
gdb/ChangeLog
gdb/symtab.c

index ec1ca5a..79f6e67 100644 (file)
@@ -1,3 +1,7 @@
+2002-02-23  Andrew Cagney  <ac131313@redhat.com>
+
+       * symtab.c (sort_search_symbols): Use xfree.
+
 2002-02-23  Richard Earnshaw  <rearnsha@arm.com>
 
        * arm-linux-tdep.c (arm_linux_init_abi): Register
index d03a7c9..3aa334e 100644 (file)
@@ -2456,7 +2456,7 @@ sort_search_symbols (struct symbol_search *prevtail, int nfound)
     }
   symp->next = old_next;
 
-  free (symbols);
+  xfree (symbols);
   return symp;
 }