mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 06:17:47 +08:00
* config/obj-elf.c (obj_elf_section): Don't free the return
value of demand_copy_C_string.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
1999-06-06 Richard Henderson <rth@cygnus.com>
|
||||||
|
|
||||||
|
* config/obj-elf.c (obj_elf_section): Don't free the return
|
||||||
|
value of demand_copy_C_string.
|
||||||
|
|
||||||
1999-06-05 Richard Henderson <rth@cygnus.com>
|
1999-06-05 Richard Henderson <rth@cygnus.com>
|
||||||
|
|
||||||
* dwarf2dbg.c (dwarf2_gen_line_info): Mirror the section symbol
|
* dwarf2dbg.c (dwarf2_gen_line_info): Mirror the section symbol
|
||||||
|
@ -801,7 +801,6 @@ obj_elf_section (push)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
attr |= obj_elf_parse_section_letters (beg, strlen (beg));
|
attr |= obj_elf_parse_section_letters (beg, strlen (beg));
|
||||||
free (beg);
|
|
||||||
|
|
||||||
SKIP_WHITESPACE ();
|
SKIP_WHITESPACE ();
|
||||||
if (*input_line_pointer == ',')
|
if (*input_line_pointer == ',')
|
||||||
@ -819,7 +818,6 @@ obj_elf_section (push)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
type = obj_elf_section_type (beg, strlen (beg));
|
type = obj_elf_section_type (beg, strlen (beg));
|
||||||
free (beg);
|
|
||||||
}
|
}
|
||||||
else if (c == '@' || c == '%')
|
else if (c == '@' || c == '%')
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user