]> git.sesse.net Git - vlc/blobdiff - plugins/filter/wall.c
* filters were using memalign but freeing p_data instead of p_data_orig.
[vlc] / plugins / filter / wall.c
index 211f8abebcf67065aa7ed2863d14c997c727a2f0..2599dcdb32bc4ae7926f999688c1932a2fb9d23a 100644 (file)
@@ -2,7 +2,7 @@
  * wall.c : Wall video plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001 VideoLAN
- * $Id: wall.c,v 1.16 2002/04/19 13:56:11 sam Exp $
+ * $Id: wall.c,v 1.17 2002/05/19 12:57:32 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -367,7 +367,7 @@ static void vout_End( vout_thread_t *p_vout )
     for( i_index = I_OUTPUTPICTURES ; i_index ; )
     {
         i_index--;
-        free( PP_OUTPUTPICTURE[ i_index ]->p_data );
+        free( PP_OUTPUTPICTURE[ i_index ]->p_data_orig );
     }
 }