From: Josef 'Jeff' Sipek Date: Tue, 21 Jul 2020 16:55:27 +0000 (-0400) Subject: lib-fs: Free parent fs generically X-Git-Tag: 2.3.13~423 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e42b179cb8f907a8fb0b838d7dbe2b5a35a682f3;p=thirdparty%2Fdovecot%2Fcore.git lib-fs: Free parent fs generically --- diff --git a/src/lib-fs/fs-api.c b/src/lib-fs/fs-api.c index b5879ccb47..ddf3d86017 100644 --- a/src/lib-fs/fs-api.c +++ b/src/lib-fs/fs-api.c @@ -230,6 +230,7 @@ void fs_unref(struct fs **_fs) if (fs->v.deinit != NULL) fs->v.deinit(fs); + fs_deinit(&fs->parent); event_unref(&fs->event); i_free(fs->username); i_free(fs->session_id);