Skip to content
Snippets Groups Projects
Commit 8492b86d authored by Jean-Paul Saman's avatar Jean-Paul Saman
Browse files

Check malloc return values.

parent 21c36619
No related branches found
No related tags found
No related merge requests found
......@@ -297,6 +297,11 @@ static int Open( vlc_object_t *p_this )
p_dec->pf_decode_sub = Decode;
p_sys = p_dec->p_sys = malloc( sizeof(decoder_sys_t) );
if( !p_sys )
{
msg_Err( p_dec, "out of memory" );
return VLC_ENOMEM;
}
memset( p_sys, 0, sizeof(decoder_sys_t) );
p_sys->i_pts = (mtime_t) 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment