Commit 0bb622ba authored by Alex Converse's avatar Alex Converse

Fix a __warn_memset_zero_len gcc-4.4 warning.

Originally committed as revision 20521 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 0c0ccc28
......@@ -670,6 +670,7 @@ static void zero_remaining(unsigned int b, unsigned int b_max,
while (b < b_max)
count += div_blocks[b];
if (count)
memset(buf, 0, sizeof(*buf) * count);
}
......
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