mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
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:
parent
ee5df92750
commit
e38f34fd7f
@ -92,7 +92,7 @@ static void lz_unpack(unsigned char *src, unsigned char *dest, int dest_len)
|
|||||||
d_end = d + dest_len;
|
d_end = d + dest_len;
|
||||||
dataleft = LE_32(s);
|
dataleft = LE_32(s);
|
||||||
s += 4;
|
s += 4;
|
||||||
memset(queue, QUEUE_SIZE, 0x20);
|
memset(queue, 0x20, QUEUE_SIZE);
|
||||||
if (LE_32(s) == 0x56781234) {
|
if (LE_32(s) == 0x56781234) {
|
||||||
s += 4;
|
s += 4;
|
||||||
qpos = 0x111;
|
qpos = 0x111;
|
||||||
|
Loading…
Reference in New Issue
Block a user