summaryrefslogtreecommitdiff
path: root/fitz/doc_document.c
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2013-01-11 16:00:27 +0000
committerRobin Watts <robin.watts@artifex.com>2013-01-11 16:50:48 +0000
commitd91e333e2fe42f83301ecb7311cfe6e25868fb78 (patch)
treec6c82681d6607b0ef1a561b66307911a11becb00 /fitz/doc_document.c
parentc195b10d6e188e825fdd58372168f1caaf72ab23 (diff)
downloadmupdf-d91e333e2fe42f83301ecb7311cfe6e25868fb78.tar.xz
Bug 693519: Replace char * with const char * in open document.
Simple patch to replace const char * with char *. I made the patch myself, but I suspect it's extremely close to the one submitted by Evgeniy A Dushistov, who reported the bug - many thanks!
Diffstat (limited to 'fitz/doc_document.c')
-rw-r--r--fitz/doc_document.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/fitz/doc_document.c b/fitz/doc_document.c
index 47157156..15605109 100644
--- a/fitz/doc_document.c
+++ b/fitz/doc_document.c
@@ -1,9 +1,9 @@
#include "fitz-internal.h"
/* Yuck! Promiscuous we are. */
-extern struct pdf_document *pdf_open_document(fz_context *ctx, char *filename);
-extern struct xps_document *xps_open_document(fz_context *ctx, char *filename);
-extern struct cbz_document *cbz_open_document(fz_context *ctx, char *filename);
+extern struct pdf_document *pdf_open_document(fz_context *ctx, const char *filename);
+extern struct xps_document *xps_open_document(fz_context *ctx, const char *filename);
+extern struct cbz_document *cbz_open_document(fz_context *ctx, const char *filename);
extern struct pdf_document *pdf_open_document_with_stream(fz_context *ctx, fz_stream *file);
extern struct xps_document *xps_open_document_with_stream(fz_context *ctx, fz_stream *file);
@@ -18,7 +18,7 @@ static inline int fz_tolower(int c)
return c;
}
-static inline int fz_strcasecmp(char *a, char *b)
+static inline int fz_strcasecmp(const char *a, const char *b)
{
while (fz_tolower(*a) == fz_tolower(*b))
{
@@ -30,7 +30,7 @@ static inline int fz_strcasecmp(char *a, char *b)
}
fz_document *
-fz_open_document_with_stream(fz_context *ctx, char *magic, fz_stream *stream)
+fz_open_document_with_stream(fz_context *ctx, const char *magic, fz_stream *stream)
{
char *ext = strrchr(magic, '.');
@@ -56,7 +56,7 @@ fz_open_document_with_stream(fz_context *ctx, char *magic, fz_stream *stream)
}
fz_document *
-fz_open_document(fz_context *ctx, char *filename)
+fz_open_document(fz_context *ctx, const char *filename)
{
char *ext = strrchr(filename, '.');