gdb/gdbserver/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Mon, 28 Feb 2011 04:20:30 +0000 (04:20 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Mon, 28 Feb 2011 04:20:30 +0000 (04:20 +0000)
* hostio.c (require_data): Use free, not xfree.

gdb/gdbserver/ChangeLog
gdb/gdbserver/hostio.c

index 914930434c61e22d9f4c7c6f44d2653bf0c20cb5..34d63ff712db1d39e34ea46b033a07e8266af531 100644 (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.
index df4cc7885fc03cb4f5344d42d02faefa6977c321..fbd286f0cdf61d5cd346878cd17f4d2b1cd65b64 100644 (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;
     }
 
This page took 0.030846 seconds and 4 git commands to generate.