mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-31 10:09:16 +08:00
* objcopy.c (copy_object): Fix thinko.
This commit is contained in:
@ -1281,16 +1281,13 @@ copy_object (bfd *ibfd, bfd *obfd)
|
||||
}
|
||||
|
||||
if (isympp)
|
||||
{
|
||||
free (isympp);
|
||||
isympp = NULL;
|
||||
}
|
||||
free (isympp);
|
||||
|
||||
if (osympp != isympp)
|
||||
{
|
||||
free (osympp);
|
||||
osympp = NULL;
|
||||
}
|
||||
free (osympp);
|
||||
|
||||
isympp = NULL;
|
||||
osympp = NULL;
|
||||
|
||||
/* BFD mandates that all output sections be created and sizes set before
|
||||
any output is done. Thus, we traverse all sections multiple times. */
|
||||
|
Reference in New Issue
Block a user