gdb/gdbserver/

* hostio.c (require_data): Use free, not xfree.
This commit is contained in:
Jan Kratochvil 2011-02-28 04:20:30 +00:00
parent 5e30da2c39
commit 7e52cbd0c6
2 changed files with 5 additions and 1 deletions

View File

@ -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.

View File

@ -135,7 +135,7 @@ require_data (char *p, int p_len, char **data, int *data_len)
if (escaped)
{
xfree (data);
free (data);
return -1;
}