Skip to content

Commit ffa86ff

Browse files
tianxiaoguposva
authored andcommitted
Upgrade to stb_image v2.19 (#41)
* Upgrade to stb_image v2.19 * Merge patch of #24 * Enable gif * Fix crashes on multi-frames gif * Fix memory leak of delays
1 parent 2929d86 commit ffa86ff

File tree

2 files changed

+1957
-928
lines changed

2 files changed

+1957
-928
lines changed

src/sh_image.c

+21-4
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,38 @@ STBIDEF unsigned char *stbi__xload_main(stbi__context *s, int *x, int *y, int *f
1919
gif_result head;
2020
gif_result *prev = 0, *gr = &head;
2121

22+
int stride = 0;
23+
unsigned char* temp = 0;
2224
memset(&g, 0, sizeof(g));
2325
memset(&head, 0, sizeof(head));
2426

2527
*frames = 0;
2628

27-
while ((gr->data = stbi__gif_load_next(s, &g, channels, 4))) {
29+
while ((gr->data = stbi__gif_load_next(s, &g, channels, 4, 0))) {
2830
if (gr->data == (unsigned char*)s) {
2931
gr->data = 0;
3032
break;
3133
}
3234

3335
if (prev) prev->next = gr;
34-
gr->delay = g.delay;
36+
gr->delay = g.delay / 10; // the delay has been saved as 1/1000 s in the new stb_image.h
3537
prev = gr;
3638
gr = (gif_result*) stbi__malloc(sizeof(gif_result));
3739
memset(gr, 0, sizeof(gif_result));
3840
++(*frames);
41+
42+
{
43+
stride = 4 * g.w * g.h;
44+
temp = prev->data;
45+
prev->data = (unsigned char*)stbi__malloc(stride);
46+
memcpy(prev->data, temp, stride);
47+
}
3948
}
4049

50+
STBI_FREE(g.out);
51+
STBI_FREE(g.history);
52+
STBI_FREE(g.background);
53+
4154
if (gr != &head)
4255
STBI_FREE(gr);
4356

@@ -69,7 +82,8 @@ STBIDEF unsigned char *stbi__xload_main(stbi__context *s, int *x, int *y, int *f
6982
}
7083
}
7184
} else {
72-
result = stbi__load_main(s, x, y, channels, 0);
85+
stbi__result_info ri;
86+
result = stbi__load_main(s, x, y, channels, 0, &ri, 8);
7387
*frames = !!result;
7488
}
7589

@@ -142,7 +156,7 @@ void img_load_from_data(image_t *img, stbi_uc* ptr, int w, int h, int frames, in
142156
exit(1);
143157
}
144158

145-
if (frames > 1 && !(img->delays = malloc(sizeof(uint16_t) * (frames - 1)))) {
159+
if (frames > 1 && !(img->delays = malloc(sizeof(uint16_t) * (frames)))) { // avoid buffer overflow
146160
perror("malloc error\n");
147161
exit(1);
148162
}
@@ -243,6 +257,9 @@ void img_convert_colors(image_t *img)
243257
void img_free(image_t *img)
244258
{
245259
free(img->pixels);
260+
if (img->delays) {
261+
free(img->delays);
262+
}
246263
}
247264

248265
void img_resize(image_t *img, float wsc, float hsc)

0 commit comments

Comments
 (0)