* obj-elf.c (obj_elf_section): Free malloced name.

This commit is contained in:
Nick Clifton 2011-03-30 15:06:51 +00:00
parent c734e7e383
commit f956bf33e2
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2011-03-30 Michael Snyder <msnyder@vmware.com>
* obj-elf.c (obj_elf_section): Free malloced name.
2011-03-30 Tristan Gingold <gingold@adacore.com>
* config/tc-ppc.c (ppc_frob_symbol): Convert stsym symbols value

View File

@ -984,6 +984,7 @@ obj_elf_section (int push)
if (beg == NULL)
{
ignore_rest_of_line ();
xfree (name);
return;
}
attr |= obj_elf_parse_section_letters (beg, strlen (beg), &clone);
@ -1003,6 +1004,7 @@ obj_elf_section (int push)
if (beg == NULL)
{
ignore_rest_of_line ();
xfree (name);
return;
}
type = obj_elf_section_type (beg, strlen (beg), TRUE);
@ -1084,6 +1086,7 @@ obj_elf_section (int push)
{
as_bad (_("character following name is not '#'"));
ignore_rest_of_line ();
xfree (name);
return;
}
beg = ++input_line_pointer;