summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2008-10-25 02:16:39 +0000
committerPedro Alves <palves@redhat.com>2008-10-25 02:16:39 +0000
commitbbe2ba601d37a94408f5783549352571b1b87675 (patch)
tree1a64dc07aca4819b4d71f98163f42ae3000d342f
parent0775829945ae55c63a5e3389b2052a7ffebc6d0f (diff)
* ada-exp.y (write_object_renaming): Use malloc instead of
xmalloc. * p-exp.y (pop_current_type): Use free instead of xfree.
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/ada-exp.y2
-rw-r--r--gdb/p-exp.y2
3 files changed, 8 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 3e807417e4..c30272bda0 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2008-10-25 Pedro Alves <pedro@codesourcery.com>
+
+ * ada-exp.y (write_object_renaming): Use malloc instead of
+ xmalloc.
+ * p-exp.y (pop_current_type): Use free instead of xfree.
+
2008-10-24 Pedro Alves <pedro@codesourcery.com>
* fork-child.c (startup_inferior): Only set threads not-executing
diff --git a/gdb/ada-exp.y b/gdb/ada-exp.y
index e4406635e3..4b8bb93a06 100644
--- a/gdb/ada-exp.y
+++ b/gdb/ada-exp.y
@@ -987,7 +987,7 @@ write_object_renaming (struct block *orig_left_context,
if (end == NULL)
end = renaming_expr + strlen (renaming_expr);
field_name.length = end - renaming_expr;
- field_name.ptr = xmalloc (end - renaming_expr + 1);
+ field_name.ptr = malloc (end - renaming_expr + 1);
strncpy (field_name.ptr, renaming_expr, end - renaming_expr);
field_name.ptr[end - renaming_expr] = '\000';
renaming_expr = end;
diff --git a/gdb/p-exp.y b/gdb/p-exp.y
index 4b5ceb2e66..e86cf893bd 100644
--- a/gdb/p-exp.y
+++ b/gdb/p-exp.y
@@ -1023,7 +1023,7 @@ pop_current_type (void)
{
current_type = tp->stored;
tp_top = tp->next;
- xfree (tp);
+ free (tp);
}
}