diff options
author | Dan Winship <danw@src.gnome.org> | 2000-08-14 04:42:51 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-08-14 04:42:51 +0800 |
commit | 3ff93be29af88808d2552a5bafd8db1980dc6cb2 (patch) | |
tree | 94ff51efdc526367f0faf3a0863f562f1b60ce48 | |
parent | e1111e8e763aae61113117debde9931dcf642b76 (diff) | |
download | gsoc2013-evolution-3ff93be29af88808d2552a5bafd8db1980dc6cb2.tar gsoc2013-evolution-3ff93be29af88808d2552a5bafd8db1980dc6cb2.tar.gz gsoc2013-evolution-3ff93be29af88808d2552a5bafd8db1980dc6cb2.tar.bz2 gsoc2013-evolution-3ff93be29af88808d2552a5bafd8db1980dc6cb2.tar.lz gsoc2013-evolution-3ff93be29af88808d2552a5bafd8db1980dc6cb2.tar.xz gsoc2013-evolution-3ff93be29af88808d2552a5bafd8db1980dc6cb2.tar.zst gsoc2013-evolution-3ff93be29af88808d2552a5bafd8db1980dc6cb2.zip |
Don't free the prompt. It doesn't belong to you.
* mail-threads.c (get_password): Don't free the prompt. It
doesn't belong to you.
svn path=/trunk/; revision=4805
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-threads.c | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index f9182603e1..b8416ff95b 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2000-08-13 Dan Winship <danw@helixcode.com> + + * mail-threads.c (get_password): Don't free the prompt. It + doesn't belong to you. + 2000-08-13 Ettore Perazzoli <ettore@helixcode.com> * mail-ops.c (mail_do_create_folder): Duplicate the listener diff --git a/mail/mail-threads.c b/mail/mail-threads.c index 473f1211df..6e17761b2f 100644 --- a/mail/mail-threads.c +++ b/mail/mail-threads.c @@ -832,7 +832,6 @@ get_password (com_msg_t * msg) dialog = gnome_request_dialog (msg->secret, msg->message, NULL, 0, get_password_cb, msg, NULL); - g_free (msg->message); /* Stop the other thread */ |