Commit e0431bc0 authored by Rémi Duraffort's avatar Rémi Duraffort

Check the return value of malloc.

parent 51578bdb
......@@ -62,6 +62,11 @@ void __playlist_ThreadCreate( vlc_object_t *p_parent )
// Stats
p_playlist->p_stats = (global_stats_t *)malloc( sizeof( global_stats_t ) );
if( !p_playlist->p_stats )
{
vlc_object_release( p_playlist );
return;
}
vlc_mutex_init( p_playlist, &p_playlist->p_stats->lock );
p_playlist->p_stats_computer = NULL;
......
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