diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-04-26 11:45:44 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-04-30 00:40:24 +0800 |
commit | 14be589bba72db8a649a88f34234bf8af9170de2 (patch) | |
tree | 9d95948a44154d4ca03eac92f8eb4d6fef9693e3 /addressbook | |
parent | 41848c19b37ff09e1c2c217b052b2b5b80bf9741 (diff) | |
download | gsoc2013-evolution-14be589bba72db8a649a88f34234bf8af9170de2.tar.gz gsoc2013-evolution-14be589bba72db8a649a88f34234bf8af9170de2.tar.zst gsoc2013-evolution-14be589bba72db8a649a88f34234bf8af9170de2.zip |
Fix a potential crasher in e_contact_quick_add_email().
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-quick-add.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-quick-add.c b/addressbook/gui/contact-editor/e-contact-quick-add.c index d10ceeac6f..6a8a5fd19d 100644 --- a/addressbook/gui/contact-editor/e-contact-quick-add.c +++ b/addressbook/gui/contact-editor/e-contact-quick-add.c @@ -606,7 +606,7 @@ e_contact_quick_add_email (const gchar *email, EContactQuickAddCallback cb, gpoi name = g_strndup (email, lt - email); addr = g_strndup (lt + 1, gt - lt - 1); } else { - addr = email; + addr = g_strdup (email); } e_contact_quick_add (name, addr, cb, closure); |