elfcompress: remove redundant assignment

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: ed62996def ("elfcompress: Don't rewrite file if no section data needs to be updated.")
This commit is contained in:
Dmitry V. Levin
2021-05-12 15:00:00 +00:00
parent 43ac25c2de
commit 806c1f7a0d
2 changed files with 3 additions and 1 deletions
+3
View File
@@ -1,5 +1,8 @@
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>
-1
View File
@@ -521,7 +521,6 @@ process_file (const char *fname)
{
if (verbose > 0)
printf ("Nothing to do.\n");
fnew = NULL;
res = 0;
goto cleanup;
}