Add another assert to decode_chunk_rle_with_size

This commit is contained in:
Michał Janiszewski 2016-07-11 23:52:43 +02:00 committed by Ted John
parent edb4a4a822
commit ef09dcd64a
1 changed files with 1 additions and 0 deletions

View File

@ -395,6 +395,7 @@ static size_t decode_chunk_rle_with_size(const uint8* src_buffer, uint8* dst_buf
if (rleCodeByte & 128) {
i++;
count = 257 - rleCodeByte;
assert(dst + count <= dst_buffer + dstSize);
memset(dst, src_buffer[i], count);
dst = (uint8*)((uintptr_t)dst + count);
} else {