From 7fd5097f9fb26871e9f0b329f1cf5554495ed589 Mon Sep 17 00:00:00 2001 From: Kevin Buettner Date: Fri, 15 Dec 2000 01:01:51 +0000 Subject: Replace free() with xfree(). --- gdb/bcache.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/bcache.c') diff --git a/gdb/bcache.c b/gdb/bcache.c index fcff55e5ac9..84e64240e87 100644 --- a/gdb/bcache.c +++ b/gdb/bcache.c @@ -111,7 +111,7 @@ expand_hash_table (struct bcache *bcache) /* Plug in the new table. */ if (bcache->bucket) - free (bcache->bucket); + xfree (bcache->bucket); bcache->bucket = new_buckets; bcache->num_buckets = new_num_buckets; } @@ -173,7 +173,7 @@ free_bcache (struct bcache *bcache) { obstack_free (&bcache->cache, 0); if (bcache->bucket) - free (bcache->bucket); + xfree (bcache->bucket); /* This isn't necessary, but at least the bcache is always in a consistent state. */ -- cgit v1.2.1