diff options
-rw-r--r-- | gdb/gdbserver/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/gdbserver/hostio.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 914930434c6..34d63ff712d 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,7 @@ +2011-02-28 Jan Kratochvil <jan.kratochvil@redhat.com> + + * hostio.c (require_data): Use free, not xfree. + 2011-02-27 Michael Snyder <msnyder@vmware.com> * server.c (handle_query): Discard unused value. 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; } |