At the point of "Nothing to do" fnew variable has not been assigned
after initialization, so it does not have to be reset to NULL.
Note that any reset of fnew to NULL has to preceded with free(fnew).
Fixes: ed62996defc6 ("elfcompress: Don't rewrite file if no section data needs to be updated.")
2021-05-12 Dmitry V. Levin <ldv@altlinux.org>
+ * elfcompress.c (process_file): Remove redundant assignment in case of
+ "Nothing to do".
+
* elfcompress.c (process_file): Set res to 0 in case of "Nothing to do".
2021-04-19 Martin Liska <mliska@suse.cz>
{
if (verbose > 0)
printf ("Nothing to do.\n");
- fnew = NULL;
res = 0;
goto cleanup;
}