Commit 80f01f29 authored by Antoine Cellerier's avatar Antoine Cellerier

[PATCH] marquee crash fix by Dermot McGahon.

parent 09ee4533
...@@ -52,6 +52,7 @@ David Weber <david_weber at gmx.de> - Mac OS X interface design & graphics (v0.5 ...@@ -52,6 +52,7 @@ David Weber <david_weber at gmx.de> - Mac OS X interface design & graphics (v0.5
Davor Orel <syntheticamac at yahoo.it> - Mac OS X icons Davor Orel <syntheticamac at yahoo.it> - Mac OS X icons
Dennis van Amerongen <Dennis dot vanAmerongen at nob dot nl> - x264 options unification Dennis van Amerongen <Dennis dot vanAmerongen at nob dot nl> - x264 options unification
Dennis Lou <dlou99 at yahoo dot com> - ATSC support in the DVB module Dennis Lou <dlou99 at yahoo dot com> - ATSC support in the DVB module
Dermot McGahon <dermot at dspsrv dot com> - Bug fixes
Diego Petteno <flameeyes at gentoo dot org> - remove usage of internal ffmpeg symbols Diego Petteno <flameeyes at gentoo dot org> - remove usage of internal ffmpeg symbols
DirektX <direktx at freemail.hu> - Hungarian translation DirektX <direktx at freemail.hu> - Hungarian translation
Dugal Harris - DirectShow fixes and MJPEG patches Dugal Harris - DirectShow fixes and MJPEG patches
......
...@@ -227,7 +227,6 @@ static void DestroyFilter( vlc_object_t *p_this ) ...@@ -227,7 +227,6 @@ static void DestroyFilter( vlc_object_t *p_this )
if( p_sys->p_style ) free( p_sys->p_style ); if( p_sys->p_style ) free( p_sys->p_style );
if( p_sys->psz_marquee ) free( p_sys->psz_marquee ); if( p_sys->psz_marquee ) free( p_sys->psz_marquee );
free( p_sys );
/* Delete the marquee variables */ /* Delete the marquee variables */
#define DEL_VAR(var) \ #define DEL_VAR(var) \
...@@ -241,6 +240,8 @@ static void DestroyFilter( vlc_object_t *p_this ) ...@@ -241,6 +240,8 @@ static void DestroyFilter( vlc_object_t *p_this )
DEL_VAR( "marq-color" ); DEL_VAR( "marq-color" );
DEL_VAR( "marq-opacity" ); DEL_VAR( "marq-opacity" );
DEL_VAR( "marq-size" ); DEL_VAR( "marq-size" );
free( p_sys );
} }
/**************************************************************************** /****************************************************************************
* String formating functions * String formating functions
......
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