summaryrefslogtreecommitdiff
path: root/source/fitz/load-gif.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2017-10-24 16:00:54 +0200
committerRobin Watts <robin.watts@artifex.com>2017-10-25 10:58:36 +0100
commit531f7ea84daa607e370757d82d8bf7e300fc76b5 (patch)
treeb621cbb5797639a343e3b46d35ec842aa4450535 /source/fitz/load-gif.c
parent75be08bcb490e9b68ef598372ff659ad960f6335 (diff)
downloadmupdf-531f7ea84daa607e370757d82d8bf7e300fc76b5.tar.xz
Fix colorspace reference counting in fz_load_*_info.
These are called from fz_new_image_from_buffer.
Diffstat (limited to 'source/fitz/load-gif.c')
-rw-r--r--source/fitz/load-gif.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/fitz/load-gif.c b/source/fitz/load-gif.c
index cc87ff84..25a37e3f 100644
--- a/source/fitz/load-gif.c
+++ b/source/fitz/load-gif.c
@@ -564,8 +564,7 @@ fz_load_gif_info(fz_context *ctx, const unsigned char *p, size_t total, int *wp,
struct info gif;
gif_read_image(ctx, &gif, p, total, 1);
-
- *cspacep = fz_device_rgb(ctx);
+ *cspacep = fz_keep_colorspace(ctx, fz_device_rgb(ctx));
*wp = gif.width;
*hp = gif.height;
*xresp = gif.xres;