aboutsummaryrefslogtreecommitdiff
path: root/gdb/wince.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2000-12-15 01:01:51 +0000
committerKevin Buettner <kevinb@redhat.com>2000-12-15 01:01:51 +0000
commitb8c9b27d1e133d46199734ca1f047af8bb2d3314 (patch)
tree1aa002791f0e97bfc48c64222199e6d9f9e5eb53 /gdb/wince.c
parent6fa957a9b9408297206fb88e7c773931760f0528 (diff)
downloadfsf-binutils-gdb-b8c9b27d1e133d46199734ca1f047af8bb2d3314.zip
fsf-binutils-gdb-b8c9b27d1e133d46199734ca1f047af8bb2d3314.tar.gz
fsf-binutils-gdb-b8c9b27d1e133d46199734ca1f047af8bb2d3314.tar.bz2
Replace free() with xfree().
Diffstat (limited to 'gdb/wince.c')
-rw-r--r--gdb/wince.c4
1 files changed, 2 insertions, 2 deletions
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);
}
}