Commit b13505da authored by Wayne Davison's avatar Wayne Davison

Need to call unmake_file() instead of free() on a file_struct.

parent 7ea6ea98
...@@ -155,7 +155,7 @@ static int make_bak_dir(char *fullpath) ...@@ -155,7 +155,7 @@ static int make_bak_dir(char *fullpath)
} }
#endif #endif
set_file_attrs(fullpath, file, NULL, NULL, 0); set_file_attrs(fullpath, file, NULL, NULL, 0);
free(file); unmake_file(file);
} }
} }
*p = '/'; *p = '/';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment