From a17ea14f8d07adb79f201aec47170c2892d5f6e8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Thu, 31 Jul 2008 13:26:51 +0200 Subject: [PATCH] Fix memleak in wall video filter. --- modules/video_filter/wall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/video_filter/wall.c b/modules/video_filter/wall.c index 6db6d57538..39ddd82a10 100644 --- a/modules/video_filter/wall.c +++ b/modules/video_filter/wall.c @@ -266,8 +266,8 @@ static int Init( vout_thread_t *p_vout ) { msg_Warn( p_vout, "invalid aspect ratio specification" ); } - free( psz_aspect ); } + free( psz_aspect ); i_xpos = var_CreateGetInteger( p_vout, "video-x" ); i_ypos = var_CreateGetInteger( p_vout, "video-y" ); -- 2.39.2