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/p-exp.y | |
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/p-exp.y')
-rw-r--r-- | gdb/p-exp.y | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |