aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2011-02-28 15:55:08 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2011-02-28 15:55:08 +0000
commit8040bd496a7b8f731ff684e6b2d3089473012f73 (patch)
treed7e97f45a808924731314aa823f3ed0d1a13ee98 /gdb/gdbserver
parent66b3e8dabc2c61facd835c97aa64dccde687d85d (diff)
downloadgdb-8040bd496a7b8f731ff684e6b2d3089473012f73.zip
gdb-8040bd496a7b8f731ff684e6b2d3089473012f73.tar.gz
gdb-8040bd496a7b8f731ff684e6b2d3089473012f73.tar.bz2
* hostio.c (require_data): Free *data, not data.
Diffstat (limited to 'gdb/gdbserver')
-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;
}