OSDN Git Service

Perform clean up only if CONFIG_FEATURE_CLEAN_UP is defined.
authorMatt Kraai <kraai@debian.org>
Thu, 20 Dec 2001 22:30:14 +0000 (22:30 -0000)
committerMatt Kraai <kraai@debian.org>
Thu, 20 Dec 2001 22:30:14 +0000 (22:30 -0000)
archival/tar.c

index 8720144..dd65de1 100644 (file)
@@ -738,11 +738,13 @@ int tar_main(int argc, char **argv)
                gz_close(gunzip_pid);
        }
 #endif // CONFIG_FEATURE_TAR_GZIP
+#ifdef CONFIG_FEATURE_CLEAN_UP
        if (src_filename) {
                free(src_filename);
        }
        if (file_list_name) {
                free(file_list_name);
        }
+#endif
        return(EXIT_SUCCESS);
 }