Browse Source

Correct wrong memset invocation.

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

Originally committed as revision 5966 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Panagiotis Issaris Diego Biurrun 19 years ago
parent
commit
e38f34fd7f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/vmdav.c

+ 1
- 1
libavcodec/vmdav.c 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;


Loading…
Cancel
Save