diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-06-13 01:44:31 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-06-13 01:44:31 +0800 |
commit | 83d8c9cc825775e91b32e262effef3f1a63ec539 (patch) | |
tree | 24537459ffaf077918673db0dd9cbf45289f18c3 /calendar/pcs/cal-factory.c | |
parent | 0fb8b75367771bed009160e596c53b790ffacc81 (diff) | |
download | gsoc2013-evolution-83d8c9cc825775e91b32e262effef3f1a63ec539.tar.gz gsoc2013-evolution-83d8c9cc825775e91b32e262effef3f1a63ec539.tar.zst gsoc2013-evolution-83d8c9cc825775e91b32e262effef3f1a63ec539.zip |
Free the uri_string once we're done with it.
2002-06-12 Jeffrey Stedfast <fejj@ximian.com>
* pcs/cal-factory.c (open_fn): Free the uri_string once we're done
with it.
svn path=/trunk/; revision=17176
Diffstat (limited to 'calendar/pcs/cal-factory.c')
-rw-r--r-- | calendar/pcs/cal-factory.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/calendar/pcs/cal-factory.c b/calendar/pcs/cal-factory.c index 767e6ec93c..4f79e5d1f3 100644 --- a/calendar/pcs/cal-factory.c +++ b/calendar/pcs/cal-factory.c @@ -450,7 +450,9 @@ open_fn (gpointer data) if (!backend) backend = open_backend (factory, uri_string, only_if_exists, listener); - + + g_free (uri_string); + if (backend) add_calendar_client (factory, backend, listener); |