summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2017-08-31 17:51:12 +0100
committerRobin Watts <robin.watts@artifex.com>2017-09-08 15:57:20 +0100
commit0775b7afe68d7d77f1d8f03e0ccb3ff99cf00790 (patch)
tree8c45bd76c7f7ff29b7a609de61fbc5c22d6b6533
parent171c079a80b00971bff1aca9de7ee08083bb7ebf (diff)
downloadmupdf-0775b7afe68d7d77f1d8f03e0ccb3ff99cf00790.tar.xz
Fix return of void function in jbig2 code.
-rw-r--r--source/fitz/filter-jbig2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/filter-jbig2.c b/source/fitz/filter-jbig2.c
index a822f1ca..dd46269b 100644
--- a/source/fitz/filter-jbig2.c
+++ b/source/fitz/filter-jbig2.c
@@ -358,7 +358,7 @@ static void *fz_jbig2_alloc(Jbig2Allocator *allocator, size_t size)
static void fz_jbig2_free(Jbig2Allocator *allocator, void *p)
{
fz_context *ctx = ((struct fz_jbig2_alloc_s *) allocator)->ctx;
- return fz_free(ctx, p);
+ fz_free(ctx, p);
}
static void *fz_jbig2_realloc(Jbig2Allocator *allocator, void *p, size_t size)