Commit 300b4d59 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen

ogg: Use unlikely()

parent 9e155e37
......@@ -896,7 +896,7 @@ static int Ogg_FindLogicalStreams( demux_t *p_demux )
logical_stream_t *p_stream;
p_stream = malloc( sizeof(logical_stream_t) );
if( !p_stream )
if( unlikely( !p_stream ) )
return VLC_ENOMEM;
TAB_APPEND( p_ogg->i_streams, p_ogg->pp_stream, p_stream );
......
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