aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
Diffstat (limited to 'gdb')
-rw-r--r--gdb/gdbserver/ChangeLog4
-rw-r--r--gdb/gdbserver/hostio.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog
index 34d63ff..02b50a4 100644
--- a/gdb/gdbserver/ChangeLog
+++ b/gdb/gdbserver/ChangeLog
@@ -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.
diff --git a/gdb/gdbserver/hostio.c b/gdb/gdbserver/hostio.c
index fbd286f..3b65feb 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)
{
- free (data);
+ free (*data);
return -1;
}