Commit 973a412d authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Memory leaks

parent 3e606132
...@@ -430,6 +430,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -430,6 +430,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
if( b_exit ) if( b_exit )
{ {
free( priv->psz_configfile );
module_EndBank( p_libvlc ); module_EndBank( p_libvlc );
return i_ret; return i_ret;
} }
...@@ -540,6 +541,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -540,6 +541,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
if( b_exit ) if( b_exit )
{ {
free( priv->psz_configfile );
module_EndBank( p_libvlc ); module_EndBank( p_libvlc );
return i_ret; return i_ret;
} }
...@@ -567,6 +569,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -567,6 +569,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
"that they are valid.\n" ); "that they are valid.\n" );
PauseConsole(); PauseConsole();
#endif #endif
free( priv->psz_configfile );
module_EndBank( p_libvlc ); module_EndBank( p_libvlc );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
...@@ -719,6 +722,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -719,6 +722,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
"-dontprintthatone\n" "-dontprintthatone\n"
"(keyword 'all' to applies to all objects)\n"); "(keyword 'all' to applies to all objects)\n");
free( psz_verbose_objects ); free( psz_verbose_objects );
/* FIXME: leaks!!!! */
return VLC_EGENERIC; return VLC_EGENERIC;
} }
} }
...@@ -792,7 +796,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -792,7 +796,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
if( !p_libvlc->p_stats ) if( !p_libvlc->p_stats )
{ {
vlc_object_release( p_libvlc ); vlc_object_release( p_libvlc );
return VLC_ENOMEM; return VLC_ENOMEM; /* FIXME: leaks */
} }
vlc_mutex_init( &p_libvlc->p_stats->lock ); vlc_mutex_init( &p_libvlc->p_stats->lock );
priv->p_stats_computer = NULL; priv->p_stats_computer = NULL;
...@@ -823,6 +827,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -823,6 +827,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
module_unneed( p_libvlc, priv->p_memcpy_module ); module_unneed( p_libvlc, priv->p_memcpy_module );
} }
module_EndBank( p_libvlc ); module_EndBank( p_libvlc );
free( priv->psz_configfile );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
playlist_Activate( p_playlist ); playlist_Activate( p_playlist );
......
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