Skip to content
Snippets Groups Projects
Commit e38f34fd authored by Panagiotis Issaris's avatar Panagiotis Issaris Committed by Diego Biurrun
Browse files

Correct wrong memset invocation.

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

Originally committed as revision 5966 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ee5df927
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment