Fix buffer size check for xan_unpack which was broken by r18586
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>
Fri, 17 Apr 2009 19:07:16 +0000 (19:07 +0000)
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>
Fri, 17 Apr 2009 19:07:16 +0000 (19:07 +0000)
Originally committed as revision 18589 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/xan.c

index f1e343e..04f2b1f 100644 (file)
@@ -156,7 +156,7 @@ static void xan_unpack(unsigned char *dest, const unsigned char *src, int dest_l
 
                 back = ((opcode & 0x10) << 12) + 1 + bytestream_get_be16(&src);
                 size2 = *src++ + 5 + ((opcode & 0xc) << 6);
-                if (dest >= dest_end || size > dest_end - dest)
+                if (size + size2 > dest_end - dest)
                     return;
             }
             memcpy(dest, src, size);  dest += size;  src += size;