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
1.6.0
Doug Bailey 19 years ago
parent 3d22579ca9
commit 410bdaf535

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

Loading…
Cancel
Save