aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-session.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-09-08 05:00:56 +0800
committerDan Winship <danw@src.gnome.org>2000-09-08 05:00:56 +0800
commit38c738571309243bfcb82577c257ae0c571fbc15 (patch)
tree1d36890a5b9d09c19e984a7fdc31f4b4ac5cef5d /camel/camel-session.c
parentc8b89a700bd419f235c3e93041ed4eb638c2a2e3 (diff)
downloadgsoc2013-evolution-38c738571309243bfcb82577c257ae0c571fbc15.tar
gsoc2013-evolution-38c738571309243bfcb82577c257ae0c571fbc15.tar.gz
gsoc2013-evolution-38c738571309243bfcb82577c257ae0c571fbc15.tar.bz2
gsoc2013-evolution-38c738571309243bfcb82577c257ae0c571fbc15.tar.lz
gsoc2013-evolution-38c738571309243bfcb82577c257ae0c571fbc15.tar.xz
gsoc2013-evolution-38c738571309243bfcb82577c257ae0c571fbc15.tar.zst
gsoc2013-evolution-38c738571309243bfcb82577c257ae0c571fbc15.zip
Make this not leak.
* camel-session.c (camel_session_get_storage_path): Make this not leak. svn path=/trunk/; revision=5243
Diffstat (limited to 'camel/camel-session.c')
-rw-r--r--camel/camel-session.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/camel/camel-session.c b/camel/camel-session.c
index 81781fe85a..3e6630a9c8 100644
--- a/camel/camel-session.c
+++ b/camel/camel-session.c
@@ -347,8 +347,9 @@ camel_session_get_storage_path (CamelSession *session, CamelService *service,
{
char *path, *p;
- path = g_strdup_printf ("%s/%s", session->storage_path,
- camel_service_get_path (service));
+ p = camel_service_get_path (service);
+ path = g_strdup_printf ("%s/%s", session->storage_path, p);
+ g_free (p);
if (access (path, F_OK) == 0)
return path;