2011-03-10 Michael Snyder <msnyder@vmware.com>

Revert the following change:
	* dwarf2dbg.c (out_file_list): Free malloced 'dir'.
	(out_debug_info): Free malloced 'dirname' and 'comp_dir'.
This commit is contained in:
Michael Snyder 2011-03-10 18:26:28 +00:00
parent ecec24e64a
commit 5652b4915c
2 changed files with 8 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2011-03-10 Michael Snyder <msnyder@vmware.com>
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 <amodra@gmail.com>
* 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 <hongjiu.lu@intel.com>

View File

@ -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);