Browse Source

* emultempl/ppc64elf.em (new_vers_pattern): Warning fix.

binutils-2_13-branch
Alan Modra 24 years ago
parent
commit
eb95bb9a4e
  1. 4
      ld/ChangeLog
  2. 2
      ld/emultempl/ppc64elf.em

4
ld/ChangeLog

@ -1,3 +1,7 @@
2002-06-07 Alan Modra <amodra@bigpond.net.au>
* emultempl/ppc64elf.em (new_vers_pattern): Warning fix.
2002-06-07 Charles Wilson <cwilson@ece.gatech.edu>
* ld/ldmain.c (main): initialize link_info.pei386_auto_import

2
ld/emultempl/ppc64elf.em

@ -349,7 +349,7 @@ gld${EMULATION_NAME}_new_vers_pattern (entry)
&& next->match == entry->match)
{
next = entry->next;
free (entry->pattern);
free ((char *) entry->pattern);
free (entry);
return next;
}

Loading…
Cancel
Save