From 5898c50ad54b27cc5a6328c36a3ba06601701992 Mon Sep 17 00:00:00 2001 From: Paul I Date: Mon, 20 Jul 2020 10:46:17 +0300 Subject: [PATCH] Fix double free bug in COFF plugin (#17315) --- libr/bin/p/bin_coff.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libr/bin/p/bin_coff.c b/libr/bin/p/bin_coff.c index ec9dcc32c9..c0011c6c1c 100644 --- a/libr/bin/p/bin_coff.c +++ b/libr/bin/p/bin_coff.c @@ -308,7 +308,6 @@ static RList *_relocs_list(RBin *rbin, struct r_bin_coff_obj *bin, bool patch, u } reloc = R_NEW0 (RBinReloc); if (!reloc) { - free (symbol); continue; }