From 09caab22d29a60d7178557097d667ebbbcfc983a Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 17 Jun 2010 13:53:14 +0100 Subject: [PATCH] imap: UID commands could have written garbage to process title. Patch by Mike Abbott / Apple --HG-- branch : HEAD --- src/imap/cmd-uid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imap/cmd-uid.c b/src/imap/cmd-uid.c index 3ce86e7cd6..9d245c5dad 100644 --- a/src/imap/cmd-uid.c +++ b/src/imap/cmd-uid.c @@ -20,7 +20,7 @@ bool cmd_uid(struct client_command_context *cmd) return TRUE; } - cmd->name = t_strconcat("UID ", cmd_name, NULL); + cmd->name = p_strconcat(cmd->pool, "UID ", cmd_name, NULL); cmd->cmd_flags = command->flags; cmd->func = command->func; cmd->uid = TRUE; -- 2.47.3