From 38c738571309243bfcb82577c257ae0c571fbc15 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Thu, 7 Sep 2000 21:00:56 +0000 Subject: Make this not leak. * camel-session.c (camel_session_get_storage_path): Make this not leak. svn path=/trunk/; revision=5243 --- camel/ChangeLog | 5 +++++ camel/camel-session.c | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/camel/ChangeLog b/camel/ChangeLog index e4b0ea11ee..7eb2fc4ef9 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2000-09-07 Dan Winship + + * camel-session.c (camel_session_get_storage_path): Make this not + leak. + 2000-09-07 Dan Winship * camel-session.c (camel_session_new): Make this take a path to a 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; -- cgit v1.2.3