aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-10-23 06:27:53 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-10-23 06:27:53 +0800
commitd8ee10a7fc4217acfc9f76871d2c8bea4bd1bfa7 (patch)
treed50ba211eb830c5e0e973e4902be74987a620b10
parent52ddf8039581c2daeae15c09b4caaeec31f96458 (diff)
downloadgsoc2013-evolution-d8ee10a7fc4217acfc9f76871d2c8bea4bd1bfa7.tar
gsoc2013-evolution-d8ee10a7fc4217acfc9f76871d2c8bea4bd1bfa7.tar.gz
gsoc2013-evolution-d8ee10a7fc4217acfc9f76871d2c8bea4bd1bfa7.tar.bz2
gsoc2013-evolution-d8ee10a7fc4217acfc9f76871d2c8bea4bd1bfa7.tar.lz
gsoc2013-evolution-d8ee10a7fc4217acfc9f76871d2c8bea4bd1bfa7.tar.xz
gsoc2013-evolution-d8ee10a7fc4217acfc9f76871d2c8bea4bd1bfa7.tar.zst
gsoc2013-evolution-d8ee10a7fc4217acfc9f76871d2c8bea4bd1bfa7.zip
Don't free `clientid' as it's uninitialized.
* mail-mt.c (do_op_status): Don't free `clientid' as it's uninitialized. svn path=/trunk/; revision=13899
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-mt.c3
2 files changed, 6 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 0042cf5d78..9aab55df45 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-22 Ettore Perazzoli <ettore@ximian.com>
+
+ * mail-mt.c (do_op_status): Don't free `clientid' as it's
+ uninitialized.
+
2001-10-22 Christopher James Lahey <clahey@ximian.com>
* message-list.etspec (Score): disable this column. Fixes Ximian
diff --git a/mail/mail-mt.c b/mail/mail-mt.c
index 8743f42dd8..2dd4109047 100644
--- a/mail/mail-mt.c
+++ b/mail/mail-mt.c
@@ -1045,7 +1045,7 @@ static void do_op_status(struct _mail_msg *mm)
* keep track of it too.
*/
if (data->activity == NULL && global_shell_client) {
- char *clientid, *what;
+ char *what;
int display;
/* its being created/removed? well leave it be */
@@ -1075,7 +1075,6 @@ static void do_op_status(struct _mail_msg *mm)
if (msg->ops->describe_msg)
g_free (what);
- g_free (clientid);
MAIL_MT_LOCK (mail_msg_lock);
if (data->activity_state == 3) {