talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 63f4da58b0bbf5960b863af74d390e0019334c79
parent 72b3051958acd40fcb03a66d4894407bc90eaa54
Author: Andrej Kacian <ticho@claws-mail.org>
Date:   Wed,  5 Sep 2018 00:17:59 +0200

Remove unused string copy from procmsg_msg_exist().

Diffstat:
Msrc/procmsg.c | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/src/procmsg.c b/src/procmsg.c @@ -531,14 +531,11 @@ FILE *procmsg_open_message(MsgInfo *msginfo) gboolean procmsg_msg_exist(MsgInfo *msginfo) { - gchar *path; gboolean ret; if (!msginfo) return FALSE; - path = folder_item_get_path(msginfo->folder); ret = !folder_item_is_msg_changed(msginfo->folder, msginfo); - g_free(path); return ret; }