summaryrefslogtreecommitdiff
path: root/source/fitz/load-gif.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2016-04-27 17:00:29 +0200
committerTor Andersson <tor.andersson@artifex.com>2016-04-27 17:01:06 +0200
commit29d53a0a460e00b3ec9dda508adbd2964077ab27 (patch)
tree1576b7808c03324739e56cdae57cd3a92d57b679 /source/fitz/load-gif.c
parent4d9c36cfe000caeaf3dcc79f4ed004e0595975e4 (diff)
downloadmupdf-29d53a0a460e00b3ec9dda508adbd2964077ab27.tar.xz
Fix 696649: remove fz_rethrow_message calls.
Diffstat (limited to 'source/fitz/load-gif.c')
-rw-r--r--source/fitz/load-gif.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/fitz/load-gif.c b/source/fitz/load-gif.c
index 97b7a16a..46b2ba66 100644
--- a/source/fitz/load-gif.c
+++ b/source/fitz/load-gif.c
@@ -280,7 +280,7 @@ gif_read_tbid(fz_context *ctx, struct info *info, unsigned char *dest, unsigned
}
fz_catch(ctx)
{
- fz_rethrow_message(ctx, "cannot read compressed table based image data in gif image");
+ fz_rethrow(ctx);
}
return p;
@@ -310,7 +310,7 @@ gif_read_ce(fz_context *ctx, struct info *info, unsigned char *p, unsigned char
}
fz_catch(ctx)
{
- fz_rethrow_message(ctx, "cannot read comment extension text in gif image");
+ fz_rethrow(ctx);
}
return p;
@@ -330,7 +330,7 @@ gif_read_pte(fz_context *ctx, struct info *info, unsigned char *p, unsigned char
}
fz_catch(ctx)
{
- fz_rethrow_message(ctx, "cannot read plain text extension text in gif image");
+ fz_rethrow(ctx);
}
return p;
@@ -393,7 +393,7 @@ gif_read_ae(fz_context *ctx, struct info *info, unsigned char *p, unsigned char
}
fz_catch(ctx)
{
- fz_rethrow_message(ctx, "cannot read application extension data in gif image");
+ fz_rethrow(ctx);
}
return p;