diff options
author | Not Zed <NotZed@Ximian.com> | 2003-04-23 12:44:58 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2003-04-23 12:44:58 +0800 |
commit | 2f37afc6f82120320867f2c0cca1b84962a1e918 (patch) | |
tree | e86a56a9ac423016ab3ef93ca2518bcae40b86a6 | |
parent | 41e808deca2ad8654b6f8528ae3492013951fcbd (diff) | |
download | gsoc2013-evolution-2f37afc6f82120320867f2c0cca1b84962a1e918.tar.gz gsoc2013-evolution-2f37afc6f82120320867f2c0cca1b84962a1e918.tar.zst gsoc2013-evolution-2f37afc6f82120320867f2c0cca1b84962a1e918.zip |
oops, the service owns the url after we construct it.
2003-04-23 Not Zed <NotZed@Ximian.com>
* camel-session.c (get_service): oops, the service owns the url
after we construct it.
svn path=/trunk/; revision=20931
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/camel-session.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 4bcdbbec02..c21d4cfcef 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2003-04-23 Not Zed <NotZed@Ximian.com> + + * camel-session.c (get_service): oops, the service owns the url + after we construct it. + 2003-04-22 Not Zed <NotZed@Ximian.com> ** Should fix #41629, #41448, et al. diff --git a/camel/camel-session.c b/camel/camel-session.c index 520abc26cf..6d58b4e457 100644 --- a/camel/camel-session.c +++ b/camel/camel-session.c @@ -437,8 +437,6 @@ get_service (CamelSession *session, const char *url_string, camel_object_bag_add(provider->service_cache[type], url, service); } - camel_url_free(url); - return service; } |