From b8c9b27d1e133d46199734ca1f047af8bb2d3314 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/wince.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/wince.c') diff --git a/gdb/wince.c b/gdb/wince.c index 381cfda..7ee0b60 100644 --- a/gdb/wince.c +++ b/gdb/wince.c @@ -1075,7 +1075,7 @@ child_init_thread_list (void) thread_info *here = th->next; th->next = here->next; (void) close_handle (here->h); - free (here); + xfree (here); } } @@ -1099,7 +1099,7 @@ child_delete_thread (DWORD id) thread_info *here = th->next; th->next = here->next; close_handle (here->h); - free (here); + xfree (here); } } -- cgit v1.1