aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/ebook/e-destination.c
diff options
context:
space:
mode:
authorJon Trowbridge <trow@ximian.com>2001-07-25 16:31:02 +0800
committerJon Trowbridge <trow@src.gnome.org>2001-07-25 16:31:02 +0800
commitb7c8e687b0bb1b94905b1a03d5a578736e226030 (patch)
tree3a60279c61df4a8495ffef1549b40048437e033e /addressbook/backend/ebook/e-destination.c
parentb2470f6dd18cf7a5b1248ae0a10157d325f9205a (diff)
downloadgsoc2013-evolution-b7c8e687b0bb1b94905b1a03d5a578736e226030.tar
gsoc2013-evolution-b7c8e687b0bb1b94905b1a03d5a578736e226030.tar.gz
gsoc2013-evolution-b7c8e687b0bb1b94905b1a03d5a578736e226030.tar.bz2
gsoc2013-evolution-b7c8e687b0bb1b94905b1a03d5a578736e226030.tar.lz
gsoc2013-evolution-b7c8e687b0bb1b94905b1a03d5a578736e226030.tar.xz
gsoc2013-evolution-b7c8e687b0bb1b94905b1a03d5a578736e226030.tar.zst
gsoc2013-evolution-b7c8e687b0bb1b94905b1a03d5a578736e226030.zip
Properly dup the results of e_destination_get_email.
2001-07-25 Jon Trowbridge <trow@ximian.com> * backend/ebook/e-destination.c (e_destination_get_name): Properly dup the results of e_destination_get_email. * gui/component/select-names/e-select-names-popup.c (e_select_names_popup): Check that our destination isn't empty before building our popup. (Bug #5250) * backend/ebook/e-destination.c (e_destination_is_empty): Made argument const. svn path=/trunk/; revision=11395
Diffstat (limited to 'addressbook/backend/ebook/e-destination.c')
-rw-r--r--addressbook/backend/ebook/e-destination.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/backend/ebook/e-destination.c b/addressbook/backend/ebook/e-destination.c
index e836922ba3..9b4fbe681b 100644
--- a/addressbook/backend/ebook/e-destination.c
+++ b/addressbook/backend/ebook/e-destination.c
@@ -189,7 +189,7 @@ e_destination_clear (EDestination *dest)
}
gboolean
-e_destination_is_empty (EDestination *dest)
+e_destination_is_empty (const EDestination *dest)
{
struct _EDestinationPrivate *p;
g_return_val_if_fail (dest && E_IS_DESTINATION (dest), TRUE);
@@ -405,7 +405,7 @@ e_destination_get_name (const EDestination *dest)
if (priv->name == NULL || *priv->name == '\0') {
g_free (priv->name);
- priv->name = e_destination_get_email (dest);
+ priv->name = g_strdup (e_destination_get_email (dest));
}
}