Commit 32eec09b authored by Rémi Duraffort's avatar Rémi Duraffort

Fix memory leak (cid #1049576)

parent 75e6888e
......@@ -501,8 +501,11 @@ void vout_EnableFilter( vout_thread_t *p_vout, const char *psz_name,
free( psz_parser );
}
else
{
free( psz_string );
return;
}
}
else
{
if( psz_parser )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment