diff options
author | Wayne Davison <wayned@samba.org> | 2007-04-24 18:43:31 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2007-04-24 18:43:31 +0000 |
commit | b13505da1d2f8a7f6e8df88e0b421ff0e7a2da54 (patch) | |
tree | 2f6788bd51c614c5e2043ac1ccf200d055f9cdf0 /backup.c | |
parent | 7ea6ea98c87b77e12c1c13699ddf3baf2bc0589a (diff) | |
download | rsync-b13505da1d2f8a7f6e8df88e0b421ff0e7a2da54.tar.gz rsync-b13505da1d2f8a7f6e8df88e0b421ff0e7a2da54.tar.bz2 rsync-b13505da1d2f8a7f6e8df88e0b421ff0e7a2da54.zip |
Need to call unmake_file() instead of free() on a file_struct.
Diffstat (limited to 'backup.c')
-rw-r--r-- | backup.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 = '/'; |