From 63be847150c93bf896841b8eaeb1516727d461dc Mon Sep 17 00:00:00 2001 From: Jan-Piet Mens Date: Tue, 15 Sep 2015 14:20:36 +0200 Subject: [PATCH] close leak --- storage.c | 1 + 1 file changed, 1 insertion(+) diff --git a/storage.c b/storage.c index 661d481..5ab958d 100644 --- a/storage.c +++ b/storage.c @@ -517,6 +517,7 @@ static JsonNode *line_to_location(char *line) json_append_member(o, "isotst", json_mkstring(isotime(tst))); get_geo(o, ghash); + free(ghash); return (o); }