OSDN Git Service

* hostio.c (require_data): Free *data, not data.
authoruweigand <uweigand>
Tue, 1 Mar 2011 00:55:07 +0000 (00:55 +0000)
committeruweigand <uweigand>
Tue, 1 Mar 2011 00:55:07 +0000 (00:55 +0000)
gdb/gdbserver/ChangeLog
gdb/gdbserver/hostio.c

index 34d63ff..02b50a4 100644 (file)
@@ -1,3 +1,7 @@
+2011-02-28  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * hostio.c (require_data): Free *data, not data.
+
 2011-02-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
 
        * hostio.c (require_data): Use free, not xfree.
index fbd286f..3b65feb 100644 (file)
@@ -135,7 +135,7 @@ require_data (char *p, int p_len, char **data, int *data_len)
 
   if (escaped)
     {
-      free (data);
+      free (*data);
       return -1;
     }