From cbd4b48d2f0496000e04e45cdf3479552e4d5a5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Wed, 9 Sep 2009 20:48:18 +0000 Subject: [PATCH] Argh, another leak. Shame on me --- src/htsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/htsp.c b/src/htsp.c index ae70b594..7dd79ceb 100644 --- a/src/htsp.c +++ b/src/htsp.c @@ -480,7 +480,7 @@ htsp_method_getDiskSpace(htsp_connection_t *htsp, htsmsg_t *in) static htsmsg_t * htsp_method_getSysTime(htsp_connection_t *htsp, htsmsg_t *in) { - htsmsg_t *out = htsmsg_create_map(); + htsmsg_t *out; struct timeval tv; struct timezone tz;