From 410bdaf53505e2a557e8d4f7f01970d568954d12 Mon Sep 17 00:00:00 2001 From: Doug Bailey <dbailey@digium.com> Date: Mon, 17 Sep 2007 14:58:19 +0000 Subject: [PATCH] Fix memory leak introduced when POST support was added. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@82568 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/http.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main/http.c b/main/http.c index 1a5da9c43c..c72f35ec58 100644 --- a/main/http.c +++ b/main/http.c @@ -841,6 +841,9 @@ static void *httpd_helper_thread(void *data) /* If they aren't mopped up already, clean up the cookies */ if (vars) ast_variables_destroy(vars); + /* Clean up all the header information pulled as well */ + if (headers) + ast_variables_destroy(headers); if (out) { struct timeval tv = ast_tvnow(); -- GitLab