2011-08-04 Tristan Gingold <gingold@adacore.com>
* config/obj-elf.c (obj_elf_section): Do not free name.
This commit is contained in:
parent
93845b7514
commit
249a777b4c
@ -1,3 +1,7 @@
|
|||||||
|
2011-08-04 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* config/obj-elf.c (obj_elf_section): Do not free name.
|
||||||
|
|
||||||
2011-08-03 James Greenhalgh <james.greenhalgh@arm.com>
|
2011-08-03 James Greenhalgh <james.greenhalgh@arm.com>
|
||||||
|
|
||||||
* config/tc-arm.c (do_t_strexbh): New.
|
* config/tc-arm.c (do_t_strexbh): New.
|
||||||
|
@ -984,7 +984,6 @@ obj_elf_section (int push)
|
|||||||
if (beg == NULL)
|
if (beg == NULL)
|
||||||
{
|
{
|
||||||
ignore_rest_of_line ();
|
ignore_rest_of_line ();
|
||||||
xfree (name);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
attr |= obj_elf_parse_section_letters (beg, strlen (beg), &clone);
|
attr |= obj_elf_parse_section_letters (beg, strlen (beg), &clone);
|
||||||
@ -1004,7 +1003,6 @@ obj_elf_section (int push)
|
|||||||
if (beg == NULL)
|
if (beg == NULL)
|
||||||
{
|
{
|
||||||
ignore_rest_of_line ();
|
ignore_rest_of_line ();
|
||||||
xfree (name);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
type = obj_elf_section_type (beg, strlen (beg), TRUE);
|
type = obj_elf_section_type (beg, strlen (beg), TRUE);
|
||||||
@ -1086,7 +1084,6 @@ obj_elf_section (int push)
|
|||||||
{
|
{
|
||||||
as_bad (_("character following name is not '#'"));
|
as_bad (_("character following name is not '#'"));
|
||||||
ignore_rest_of_line ();
|
ignore_rest_of_line ();
|
||||||
xfree (name);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
beg = ++input_line_pointer;
|
beg = ++input_line_pointer;
|
||||||
|
Loading…
Reference in New Issue
Block a user