summaryrefslogtreecommitdiff
path: root/gdb/wince.c
diff options
context:
space:
mode:
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);
}
}