Merge branch 'master' into xml-export

This commit is contained in:
Mario Hüttel 2023-01-04 15:18:19 +01:00
commit 598394cc2d
1 changed files with 5 additions and 3 deletions

View File

@ -394,7 +394,7 @@ int main(int argc, char **argv)
struct command_line_options cmd_opts;
elfpatch_handle_t *ep;
int ret = 0;
uint32_t *crcs;
uint32_t *crcs = NULL;
xml_init();
@ -484,10 +484,12 @@ int main(int argc, char **argv)
ret_close_elf:
elf_patch_close_and_free(ep);
/* Free the CRCs. This is not strictly necessary... */
free(crcs);
free_cmds:
free_cmd_args(&cmd_opts);
/* Free CRCs if necessary */
if (crcs)
free(crcs);
return ret;
}