Commit 8722fe58 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen

aes3: Add unlikely()

parent 6c7f5148
...@@ -239,7 +239,7 @@ static int Open( decoder_t *p_dec, bool b_packetizer ) ...@@ -239,7 +239,7 @@ static int Open( decoder_t *p_dec, bool b_packetizer )
/* Allocate the memory needed to store the decoder's structure */ /* Allocate the memory needed to store the decoder's structure */
p_dec->p_sys = p_sys = malloc( sizeof(decoder_sys_t) ); p_dec->p_sys = p_sys = malloc( sizeof(decoder_sys_t) );
if( !p_sys ) if( unlikely( !p_sys ) )
return VLC_EGENERIC; return VLC_EGENERIC;
/* Misc init */ /* Misc init */
......
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