aboutsummaryrefslogtreecommitdiff
path: root/libiberty
diff options
context:
space:
mode:
authorJim Blandy <jimb@codesourcery.com>2001-03-22 15:16:04 +0000
committerJim Blandy <jimb@codesourcery.com>2001-03-22 15:16:04 +0000
commita88e356aabe2f4c08d3b4a2c0d586fb9269aea21 (patch)
treec500261f33e38dc693452ae6f0d8a8e25f8a8786 /libiberty
parenta2061976f9244eecfd3335c982b2edb3c31e34f6 (diff)
downloadgdb-a88e356aabe2f4c08d3b4a2c0d586fb9269aea21.zip
gdb-a88e356aabe2f4c08d3b4a2c0d586fb9269aea21.tar.gz
gdb-a88e356aabe2f4c08d3b4a2c0d586fb9269aea21.tar.bz2
* cp-demangle.c (string_list_delete): Don't forget to free the
actual contents of the string.
Diffstat (limited to 'libiberty')
-rw-r--r--libiberty/ChangeLog6
-rw-r--r--libiberty/cp-demangle.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index 7bc9eb1..f6e537f 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,9 @@
+2001-03-22 Jim Blandy <jimb@redhat.com>
+
+ * cp-demangle.c (string_list_delete): Use dyn_string_delete
+ instead of free, to free the contents as well as the string
+ structure.
+
2001-03-21 Zack Weinberg <zackw@stanford.edu>
* make-temp-file.c: Always default DIR_SEPARATOR to '/'.
diff --git a/libiberty/cp-demangle.c b/libiberty/cp-demangle.c
index e436735..b8255b3 100644
--- a/libiberty/cp-demangle.c
+++ b/libiberty/cp-demangle.c
@@ -424,7 +424,7 @@ string_list_delete (node)
while (node != NULL)
{
string_list_t next = node->next;
- free (node);
+ dyn_string_delete ((dyn_string_t) node);
node = next;
}
}