Skip to content
Snippets Groups Projects
Commit bdef480c authored by Mark Spencer's avatar Mark Spencer
Browse files

Back out improper freeing of variables

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6751 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 7560605e
No related branches found
No related tags found
No related merge requests found
......@@ -103,12 +103,6 @@ static void init_outgoing(struct outgoing *o)
static void free_outgoing(struct outgoing *o)
{
struct ast_variable *last;
while(o->vars) {
last = o->vars;
o->vars = o->vars->next;
free(last);
}
free(o);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment