mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
gdb/gdbserver/
* hostio.c (require_data): Use free, not xfree.
This commit is contained in:
@ -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>
|
2011-02-27 Michael Snyder <msnyder@vmware.com>
|
||||||
|
|
||||||
* server.c (handle_query): Discard unused value.
|
* server.c (handle_query): Discard unused value.
|
||||||
|
@ -135,7 +135,7 @@ require_data (char *p, int p_len, char **data, int *data_len)
|
|||||||
|
|
||||||
if (escaped)
|
if (escaped)
|
||||||
{
|
{
|
||||||
xfree (data);
|
free (data);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user