aboutsummaryrefslogtreecommitdiff
path: root/ld/emultempl/pe.em
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2020-05-20 22:50:49 +0930
committerAlan Modra <amodra@gmail.com>2020-05-21 10:45:33 +0930
commit5e2ab6125485bede5611187f2df4b26b04026b80 (patch)
treef3884cb27e8761b535ee38e63ebee33c5cdbfea4 /ld/emultempl/pe.em
parent3d45296946ba5c0ff59c407029bee3f368cace00 (diff)
downloadfsf-binutils-gdb-5e2ab6125485bede5611187f2df4b26b04026b80.zip
fsf-binutils-gdb-5e2ab6125485bede5611187f2df4b26b04026b80.tar.gz
fsf-binutils-gdb-5e2ab6125485bede5611187f2df4b26b04026b80.tar.bz2
Replace "if (x) free (x)" with "free (x)", ld
* deffilep.y: Replace "if (x) free (x)" with "free (x)" thoughout. * emultempl/elf.em: Likewise. * emultempl/msp430.em: Likewise. * emultempl/pe.em: Likewise. * emultempl/pep.em: Likewise. * emultempl/ppc64elf.em: Likewise. * emultempl/xtensaelf.em: Likewise. * ldelf.c: Likewise. * ldfile.c: Likewise. * ldmain.c: Likewise. * ldmisc.c: Likewise. * lexsup.c: Likewise. * pe-dll.c: Likewise.
Diffstat (limited to 'ld/emultempl/pe.em')
-rw-r--r--ld/emultempl/pe.em7
1 files changed, 2 insertions, 5 deletions
diff --git a/ld/emultempl/pe.em b/ld/emultempl/pe.em
index 8c5ee76..3899c9d 100644
--- a/ld/emultempl/pe.em
+++ b/ld/emultempl/pe.em
@@ -884,11 +884,8 @@ gld${EMULATION_NAME}_handle_option (int optc)
pe_dll_characteristics |= IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE;
break;
case OPTION_BUILD_ID:
- if (emit_build_id != NULL)
- {
- free ((char *) emit_build_id);
- emit_build_id = NULL;
- }
+ free ((char *) emit_build_id);
+ emit_build_id = NULL;
if (optarg == NULL)
optarg = DEFAULT_BUILD_ID_STYLE;
if (strcmp (optarg, "none"))