started to add some 64 bit file offset support - not complete yet
[rsync/rsync.git] / flist.c
diff --git a/flist.c b/flist.c
index 8226b21..d53c815 100644 (file)
--- a/flist.c
+++ b/flist.c
@@ -728,6 +728,7 @@ static void free_file(struct file_struct *file)
        if (!file) return;
        if (file->basename) free(file->basename);
        if (file->link) free(file->link);
+       if (file->sum) free(file->sum);
        bzero((char *)file, sizeof(*file));
        free(file);
 }