From: Timo Sirainen Date: Mon, 29 Nov 2010 19:13:37 +0000 (+0000) Subject: fs-sis: Memory leak fix. X-Git-Tag: 2.0.8~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66a164c358d14bb61de73288588ea65a6ba05113;p=thirdparty%2Fdovecot%2Fcore.git fs-sis: Memory leak fix. --- diff --git a/src/lib-fs/fs-sis.c b/src/lib-fs/fs-sis.c index d62315e261..5f8752175d 100644 --- a/src/lib-fs/fs-sis.c +++ b/src/lib-fs/fs-sis.c @@ -129,6 +129,7 @@ static void fs_sis_close(struct fs_file *_file) } fs_close(&file->super); i_free(file->hash); + i_free(file->hash_path); i_free(file->file.path); i_free(file); }