[vlc-devel] commit: Fix crash ( Rémi Denis-Courmont )
    git version control 
    git at videolan.org
       
    Sun Feb  8 09:59:01 CET 2009
    
    
  
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sun Feb  8 10:58:37 2009 +0200| [45d4420f5ba9d3aa86229059d2e2a3eedf6450cc] | committer: Rémi Denis-Courmont 
Fix crash
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=45d4420f5ba9d3aa86229059d2e2a3eedf6450cc
---
 modules/video_output/xcb/xcb.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/video_output/xcb/xcb.c b/modules/video_output/xcb/xcb.c
index 828f530..53e463f 100644
--- a/modules/video_output/xcb/xcb.c
+++ b/modules/video_output/xcb/xcb.c
@@ -364,7 +364,7 @@ static int PictureInit (vout_thread_t *vout, picture_t *pic)
 error:
     if (shm != SHM_ERR)
         shmdt (shm);
-    free (p_sys);
+    free (priv);
     return VLC_EGENERIC;
 }
 
    
    
More information about the vlc-devel
mailing list