From: Thorsten Maerz Date: Thu, 27 Nov 2003 20:12:13 +0000 (+0000) Subject: fix crash if 'save_all' failed twice X-Git-Tag: rel_0_9_8~69 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=c6cdb494ce013d9dcc83ae0cd3566cb99d4b8739;ds=sidebyside fix crash if 'save_all' failed twice --- diff --git a/ChangeLog.claws b/ChangeLog.claws index f862a566b..f088036a3 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,8 @@ +2003-11-27 [thorsten] 0.9.7claws3 + + * src/mimeview.c + fix crash if 'save_all' failed twice + 2003-11-27 [paul] 0.9.7claws2 * po/POTFILES.in diff --git a/configure.ac b/configure.ac index b4871ce93..f8dfae88f 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=7 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=2 +EXTRA_VERSION=3 if test $EXTRA_VERSION -eq 0; then VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}claws else diff --git a/src/mimeview.c b/src/mimeview.c index 5bd28b45e..4abe8a0c7 100644 --- a/src/mimeview.c +++ b/src/mimeview.c @@ -973,6 +973,7 @@ static void mimeview_save_all(MimeView *mimeview) alertpanel_error(_("`%s' is not a directory."), dirname); g_free (dirname); + dirname = NULL; return; }