From 5e761ea4b8f3e9760e8172b256a7846bb9c3593e Mon Sep 17 00:00:00 2001 From: Alfons Hoogervorst Date: Tue, 29 Jul 2003 15:40:29 +0000 Subject: [PATCH] * src/messageview.c plug a memleak --- ChangeLog.claws | 5 +++++ configure.ac | 2 +- src/messageview.c | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog.claws b/ChangeLog.claws index bd5571f12..efa153ad6 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,8 @@ +2003-07-29 [alfons] 0.9.3claws75 + + * src/messageview.c + fix a memleak (claws-only) + 2003-07-29 [alfons] 0.9.3claws74 * src/mimeview.[ch] diff --git a/configure.ac b/configure.ac index 450a5f131..43fe059d2 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=3 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=74 +EXTRA_VERSION=75 if test $EXTRA_VERSION -eq 0; then VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}claws else diff --git a/src/messageview.c b/src/messageview.c index b7bc73981..53a8c53f0 100644 --- a/src/messageview.c +++ b/src/messageview.c @@ -575,6 +575,7 @@ static gint disposition_notification_send(MsgInfo *msginfo) "receipt."), to, buf); val = alertpanel(_("Warning"), message, _("Send"), _("+Don't Send"), NULL); + g_free(message); if (val != G_ALERTDEFAULT) return -1; } -- 2.25.1