diff options
author | Pedro Alves <palves@redhat.com> | 2008-10-25 02:16:39 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-10-25 02:16:39 +0000 |
commit | bbe2ba601d37a94408f5783549352571b1b87675 (patch) | |
tree | 1a64dc07aca4819b4d71f98163f42ae3000d342f /gdb | |
parent | 0775829945ae55c63a5e3389b2052a7ffebc6d0f (diff) | |
download | gdb-bbe2ba601d37a94408f5783549352571b1b87675.zip gdb-bbe2ba601d37a94408f5783549352571b1b87675.tar.gz gdb-bbe2ba601d37a94408f5783549352571b1b87675.tar.bz2 |
* ada-exp.y (write_object_renaming): Use malloc instead of
xmalloc.
* p-exp.y (pop_current_type): Use free instead of xfree.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/ada-exp.y | 2 | ||||
-rw-r--r-- | gdb/p-exp.y | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3e80741..c30272b 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 e440663..4b8bb93 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 4b5ceb2..e86cf89 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); } } |