summaryrefslogtreecommitdiff
path: root/gdb/gdbserver/hostio.c
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2011-02-28 04:20:30 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2011-02-28 04:20:30 +0000
commit7e52cbd0c66ef98b19be5b4da97b086bfcdb5df0 (patch)
tree0d43b99a1d78ec15fde4db5f2cc73b607c2dafb7 /gdb/gdbserver/hostio.c
parent5e30da2c3927f751dcef3291d8473d111252d1b4 (diff)
downloadbinutils-gdb-7e52cbd0c66ef98b19be5b4da97b086bfcdb5df0.tar.gz
gdb/gdbserver/
* hostio.c (require_data): Use free, not xfree.
Diffstat (limited to 'gdb/gdbserver/hostio.c')
-rw-r--r--gdb/gdbserver/hostio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbserver/hostio.c b/gdb/gdbserver/hostio.c
index df4cc7885fc..fbd286f0cdf 100644
--- a/gdb/gdbserver/hostio.c
+++ b/gdb/gdbserver/hostio.c
@@ -135,7 +135,7 @@ require_data (char *p, int p_len, char **data, int *data_len)
if (escaped)
{
- xfree (data);
+ free (data);
return -1;
}