diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-02-28 04:20:30 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-02-28 04:20:30 +0000 |
commit | 7e52cbd0c66ef98b19be5b4da97b086bfcdb5df0 (patch) | |
tree | 0d43b99a1d78ec15fde4db5f2cc73b607c2dafb7 /gdb/gdbserver/hostio.c | |
parent | 5e30da2c3927f751dcef3291d8473d111252d1b4 (diff) | |
download | binutils-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.c | 2 |
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; } |