From: Timo Sirainen Date: Wed, 11 Jan 2023 22:01:52 +0000 (+0200) Subject: imapc: Add data stack frame when parsing untagged fetches during sync X-Git-Tag: 2.4.0~3211 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c9c140825ad91f3addaf3b1f3327011cb33bab4;p=thirdparty%2Fdovecot%2Fcore.git imapc: Add data stack frame when parsing untagged fetches during sync --- diff --git a/src/lib-storage/index/imapc/imapc-sync.c b/src/lib-storage/index/imapc/imapc-sync.c index 3130121787..6f0f221c50 100644 --- a/src/lib-storage/index/imapc/imapc-sync.c +++ b/src/lib-storage/index/imapc/imapc-sync.c @@ -585,8 +585,11 @@ static void imapc_sync_handle_untagged_fetches(struct imapc_mailbox *mbox) continue; } - imapc_untagged_fetch_update_flags(mbox, untagged_fetch_context, - updated_view, lseq); + T_BEGIN { + imapc_untagged_fetch_update_flags(mbox, + untagged_fetch_context, + updated_view, lseq); + } T_END; imapc_untagged_fetch_ctx_free(&untagged_fetch_context); }