From b13505da1d2f8a7f6e8df88e0b421ff0e7a2da54 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 24 Apr 2007 18:43:31 +0000 Subject: [PATCH] Need to call unmake_file() instead of free() on a file_struct. --- backup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backup.c b/backup.c index 7189a5c2..7db0d2c2 100644 --- a/backup.c +++ b/backup.c @@ -155,7 +155,7 @@ static int make_bak_dir(char *fullpath) } #endif set_file_attrs(fullpath, file, NULL, NULL, 0); - free(file); + unmake_file(file); } } *p = '/'; -- 2.34.1