Commit 51578bdb authored by Rémi Duraffort's avatar Rémi Duraffort

Check the return value of malloc.

parent 0bbedab7
......@@ -715,6 +715,9 @@ void playlist_SendAddNotify( playlist_t *p_playlist, int i_item_id,
{
vlc_value_t val;
playlist_add_t *p_add = (playlist_add_t *)malloc( sizeof( playlist_add_t) );
if( !p_add )
return;
p_add->i_item = i_item_id;
p_add->i_node = i_node_id;
val.p_address = p_add;
......
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