From 719416f66b1757d33364b6ffb37119e29596a5ae Mon Sep 17 00:00:00 2001 From: Jeff Lenk Date: Mon, 10 Jan 2011 09:39:46 -0600 Subject: [PATCH] mem leak --- src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c b/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c index be06b148cd..468190d887 100644 --- a/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c +++ b/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c @@ -744,6 +744,7 @@ abyss_bool handler_hook(TSession * r) if (dateValue) { ResponseAddField(r, "Date", dateValue); + free(dateValue); } }