Commit 995655d1 authored by Rémi Duraffort's avatar Rémi Duraffort

Initialise variable before using it (CID 238)

parent 2f066806
......@@ -236,7 +236,7 @@ static inline void block_ChainProperties( block_t *p_list, int *pi_count, size_t
{
size_t i_size = 0;
mtime_t i_length = 0;
int i_count;
int i_count = 0;
while( p_list )
{
......
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