From 5652b4915ceb5be161b5735d68ff7909a33a7db3 Mon Sep 17 00:00:00 2001 From: Michael Snyder Date: Thu, 10 Mar 2011 18:26:28 +0000 Subject: 2011-03-10 Michael Snyder Revert the following change: * dwarf2dbg.c (out_file_list): Free malloced 'dir'. (out_debug_info): Free malloced 'dirname' and 'comp_dir'. --- gas/ChangeLog | 10 ++++++++-- gas/dwarf2dbg.c | 3 --- 2 files changed, 8 insertions(+), 5 deletions(-) (limited to 'gas') diff --git a/gas/ChangeLog b/gas/ChangeLog index 970cbd94b47..437768ed5f6 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2011-03-10 Michael Snyder + + Revert the following change: + * dwarf2dbg.c (out_file_list): Free malloced 'dir'. + (out_debug_info): Free malloced 'dirname' and 'comp_dir'. + 2011-03-10 Alan Modra * gas/config/obj-elf.h (ELF_TARGET_SYMBOL_FIELDS, @@ -8,8 +14,8 @@ * dwarf2dbg.c (out_file_list): Free malloced 'dir'. (out_debug_info): Free malloced 'dirname' and 'comp_dir'. - (emit_fixed_inc_line_addr): Assign instead of conditional - in assert. + (emit_fixed_inc_line_addr): Assign instead of conditional in + assert. 2011-03-05 H.J. Lu diff --git a/gas/dwarf2dbg.c b/gas/dwarf2dbg.c index 92fc5705ef1..c551a7f6c68 100644 --- a/gas/dwarf2dbg.c +++ b/gas/dwarf2dbg.c @@ -1328,7 +1328,6 @@ out_file_list (void) size = strlen (dir) + 1; cp = frag_more (size); memcpy (cp, dir, size); - xfree ((char *) dir); } /* Terminate it. */ out_byte ('\0'); @@ -1685,7 +1684,6 @@ out_debug_info (segT info_seg, segT abbrev_seg, segT line_seg, segT ranges_seg) memcpy (p, dirname, len); INSERT_DIR_SEPARATOR (p, len); #endif - xfree ((char *) dirname); } len = strlen (files[1].filename) + 1; p = frag_more (len); @@ -1696,7 +1694,6 @@ out_debug_info (segT info_seg, segT abbrev_seg, segT line_seg, segT ranges_seg) len = strlen (comp_dir) + 1; p = frag_more (len); memcpy (p, comp_dir, len); - xfree ((char *) comp_dir); /* DW_AT_producer */ sprintf (producer, "GNU AS %s", VERSION); -- cgit v1.2.3