diff options
author | Michael Meeks <michael@helixcode.com> | 2001-01-03 19:04:09 +0800 |
---|---|---|
committer | Michael Meeks <michael@src.gnome.org> | 2001-01-03 19:04:09 +0800 |
commit | 2a86e81e9d4e478009682b1d524f33ed58435956 (patch) | |
tree | a30a6b8afbe571e9427a24b7684ad5461e8447d5 /addressbook/backend | |
parent | 30a12658a3f28e81f033f9c7e3b29eefb8b6584b (diff) | |
download | gsoc2013-evolution-2a86e81e9d4e478009682b1d524f33ed58435956.tar gsoc2013-evolution-2a86e81e9d4e478009682b1d524f33ed58435956.tar.gz gsoc2013-evolution-2a86e81e9d4e478009682b1d524f33ed58435956.tar.bz2 gsoc2013-evolution-2a86e81e9d4e478009682b1d524f33ed58435956.tar.lz gsoc2013-evolution-2a86e81e9d4e478009682b1d524f33ed58435956.tar.xz gsoc2013-evolution-2a86e81e9d4e478009682b1d524f33ed58435956.tar.zst gsoc2013-evolution-2a86e81e9d4e478009682b1d524f33ed58435956.zip |
g_strdup things we g_free.
2001-01-03 Michael Meeks <michael@helixcode.com>
* backend/pas/pas-backend-file.c (pas_backend_file_search):
g_strdup things we g_free.
svn path=/trunk/; revision=7229
Diffstat (limited to 'addressbook/backend')
-rw-r--r-- | addressbook/backend/pas/pas-backend-file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/backend/pas/pas-backend-file.c b/addressbook/backend/pas/pas-backend-file.c index 61456ddf3d..98f1962bd5 100644 --- a/addressbook/backend/pas/pas-backend-file.c +++ b/addressbook/backend/pas/pas-backend-file.c @@ -510,7 +510,7 @@ pas_backend_file_search (PASBackendFile *bf, /* check if the vcard matches the search sexp */ if (vcard_matches_search (view, vcard_string)) { - cards = g_list_append (cards, strdup(vcard_string)); + cards = g_list_append (cards, g_strdup (vcard_string)); } } |