From 9547e5055922e3279bcd349fc6094e583e559f44 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 27 May 2013 20:22:12 +0200 Subject: [PATCH] Fix memory leak in service command --- src/http_command.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/http_command.c b/src/http_command.c index d4806ae..3ab415c 100644 --- a/src/http_command.c +++ b/src/http_command.c @@ -668,6 +668,7 @@ static void cmd_service(struct http_channel *c) wrbuf_write(c->wrbuf, (const char *) buf->content, buf->use); xmlBufferFree(buf); + xmlFreeNode(tmp); } response_close(c, 0); -- 1.7.10.4