Commit a17ea14f authored by Rémi Duraffort's avatar Rémi Duraffort

Fix memleak in wall video filter.

parent 696ef23c
...@@ -266,8 +266,8 @@ static int Init( vout_thread_t *p_vout ) ...@@ -266,8 +266,8 @@ static int Init( vout_thread_t *p_vout )
{ {
msg_Warn( p_vout, "invalid aspect ratio specification" ); msg_Warn( p_vout, "invalid aspect ratio specification" );
} }
free( psz_aspect );
} }
free( psz_aspect );
i_xpos = var_CreateGetInteger( p_vout, "video-x" ); i_xpos = var_CreateGetInteger( p_vout, "video-x" );
i_ypos = var_CreateGetInteger( p_vout, "video-y" ); i_ypos = var_CreateGetInteger( p_vout, "video-y" );
......
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