Remove a nullptr

This commit is contained in:
Chris Forseth 2017-11-27 23:42:13 -06:00
parent 03b4bbc5d2
commit de75509b1c

View File

@ -6487,7 +6487,7 @@ static void *stbi__load_gif_main(stbi__context *s, int **delays, int *x, int *y,
(*delays)[layers - 1U] = g.delay;
}
}
} while (u != nullptr);
} while (u != 0);
// free temp buffer;
STBI_FREE(g.out);