Skip to content
Snippets Groups Projects
Commit c4d0891b authored by Denis Charmet's avatar Denis Charmet
Browse files

Fix CreateDecodedNAL return

parent ed686b09
No related branches found
No related tags found
No related merge requests found
......@@ -229,7 +229,7 @@ static uint8_t * CreateDecodedNAL( int *pi_ret,
{
uint8_t *dst = malloc( i_src );
if( !dst )
return;
return NULL;
*pi_ret = nal_decode( src, dst, i_src );
return dst;
......
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