Archived
14
0
Fork 0

Fix memory leak introduced when POST support was added.

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@82568 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
dbailey 2007-09-17 14:58:19 +00:00
parent 3f10f837d1
commit bda4fcb812

View file

@ -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();