Commit 0889e424 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

No need to set i_buffer twice

parent 113113d7
......@@ -253,5 +253,5 @@ static block_t *BlockUDP( access_t *p_access )
return NULL;
}
return block_Realloc( p_block, 0, p_block->i_buffer = len );
return block_Realloc( p_block, 0, len );
}
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