Commit 4a990366 authored by Rémi Duraffort's avatar Rémi Duraffort

dirac: fix invalid test (found with coccinelle static analyzer).

parent 6867a707
...@@ -279,7 +279,7 @@ static int block_ChainToArray( block_t *p_block, block_t ***ppp_array) ...@@ -279,7 +279,7 @@ static int block_ChainToArray( block_t *p_block, block_t ***ppp_array)
block_ChainProperties( p_block, &i_num_blocks, NULL, NULL ); block_ChainProperties( p_block, &i_num_blocks, NULL, NULL );
*ppp_array = calloc( i_num_blocks, sizeof( block_t* ) ); *ppp_array = calloc( i_num_blocks, sizeof( block_t* ) );
if( !ppp_array ) return 0; if( !*ppp_array ) return 0;
for( int i = 0; i < i_num_blocks; i++ ) for( int i = 0; i < i_num_blocks; i++ )
{ {
......
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