summaryrefslogtreecommitdiff
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
commit7fd5097f9fb26871e9f0b329f1cf5554495ed589 (patch)
tree20b4de6e7953169d2402aff4e158b475b5726e67 /gdb/wince.c
parenteac388f33554805a5765a2836926311f77cd8d79 (diff)
downloadgdb-7fd5097f9fb26871e9f0b329f1cf5554495ed589.tar.gz
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 381cfdabeb0..7ee0b60f6c0 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);
}
}