diff options
author | Jon Trowbridge <trow@ximian.com> | 2001-09-14 10:22:37 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-09-14 10:22:37 +0800 |
commit | b68e1162c42caa8e1e465a9b50c95eaf49a7f470 (patch) | |
tree | 388ca2c11137ec2b7c65ecb13c48688397c0472d | |
parent | 1ec654cc565ad4495700d323c032d3f4bcde2bf2 (diff) | |
download | gsoc2013-evolution-b68e1162c42caa8e1e465a9b50c95eaf49a7f470.tar gsoc2013-evolution-b68e1162c42caa8e1e465a9b50c95eaf49a7f470.tar.gz gsoc2013-evolution-b68e1162c42caa8e1e465a9b50c95eaf49a7f470.tar.bz2 gsoc2013-evolution-b68e1162c42caa8e1e465a9b50c95eaf49a7f470.tar.lz gsoc2013-evolution-b68e1162c42caa8e1e465a9b50c95eaf49a7f470.tar.xz gsoc2013-evolution-b68e1162c42caa8e1e465a9b50c95eaf49a7f470.tar.zst gsoc2013-evolution-b68e1162c42caa8e1e465a9b50c95eaf49a7f470.zip |
Fixed double-freeing of EDestination vector when sending html mail to
2001-09-13 Jon Trowbridge <trow@ximian.com>
* mail-callbacks.c (composer_get_message): Fixed double-freeing of
EDestination vector when sending html mail to people who don't
necessarily want it. Fixes bug #9848.
svn path=/trunk/; revision=12821
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/mail-callbacks.c | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index de33eb4e2c..68afaee948 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2001-09-13 Jon Trowbridge <trow@ximian.com> + + * mail-callbacks.c (composer_get_message): Fixed double-freeing of + EDestination vector when sending html mail to people who don't + necessarily want it. Fixes bug #9848. + 2001-09-13 Jeffrey Stedfast <fejj@ximian.com> * subscribe-dialog.c (get_short_folderinfo_desc): diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c index b6437d565e..b6b50e36d0 100644 --- a/mail/mail-callbacks.c +++ b/mail/mail-callbacks.c @@ -494,7 +494,6 @@ composer_get_message (EMsgComposer *composer) if (html_problem) { html_problem = ! ask_confirm_for_unwanted_html_mail (composer, recipients); - e_destination_freev (recipients); if (html_problem) { camel_object_unref (CAMEL_OBJECT (message)); message = NULL; |