Correct wrong memset invocation.

patch by Panagiotis Issaris, takis%%.%%issaris%%@%%uhasselt%%.%%be

Originally committed as revision 5966 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Panagiotis Issaris 2006-08-09 07:52:28 +00:00 committed by Diego Biurrun
parent ee5df92750
commit e38f34fd7f
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ static void lz_unpack(unsigned char *src, unsigned char *dest, int dest_len)
d_end = d + dest_len;
dataleft = LE_32(s);
s += 4;
memset(queue, QUEUE_SIZE, 0x20);
memset(queue, 0x20, QUEUE_SIZE);
if (LE_32(s) == 0x56781234) {
s += 4;
qpos = 0x111;