Update assert condition

This commit is contained in:
Michał Janiszewski 2016-01-16 18:10:44 +01:00
parent 2b29f252e5
commit f35fac6030
1 changed files with 2 additions and 2 deletions

View File

@ -419,8 +419,8 @@ static size_t encode_chunk_repeat(const uint8 *src_buffer, uint8 *dst_buffer, si
repeatCount = 0;
maxRepeatCount = min(7, searchEnd - repeatIndex);
for (j = 0; j <= maxRepeatCount; j++) {
assert(repeatIndex + j < sizeof(rct_s6_data) - offsetof(rct_s6_data, dword_010E63B8));
assert(i + j < sizeof(rct_s6_data) - offsetof(rct_s6_data, dword_010E63B8));
assert(repeatIndex + j < length);
assert(i + j < length);
if (src_buffer[repeatIndex + j] == src_buffer[i + j]) {
repeatCount++;
} else {