1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

stbi: fix error not matching with assertion (#10454)

This commit is contained in:
a-iga 2021-06-15 00:18:56 +09:00 committed by GitHub
parent b26e1cdc0f
commit 5aa7a983f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5399,7 +5399,7 @@ static void *stbi__bmp_load(stbi__context *s, int *x, int *y, int *comp, int req
}
if (psize == 0) {
STBI_ASSERT(info.offset == s->callback_already_read + (int) (s->img_buffer - s->img_buffer_original));
if (info.offset != s->callback_already_read + (s->img_buffer - s->buffer_start)) {
if (info.offset != s->callback_already_read + (int) (s->img_buffer - s->img_buffer_original)) {
return stbi__errpuc("bad offset", "Corrupt BMP");
}
}