]> git.sesse.net Git - vlc/blobdiff - plugins/filter/clone.c
* filters were using memalign but freeing p_data instead of p_data_orig.
[vlc] / plugins / filter / clone.c
index f12cd0003f0835afe0987341934d29bff67bd8f4..2a85275a35aa1439e61d58bdee1268f068377693 100644 (file)
@@ -2,7 +2,7 @@
  * clone.c : Clone video plugin for vlc
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: clone.c,v 1.1 2002/05/13 19:30:40 sam Exp $
+ * $Id: clone.c,v 1.2 2002/05/19 12:57:32 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -222,7 +222,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 );
     }
 }