From e3180169b42481fbbc4886db741782ca1391c46e Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Mon, 12 Dec 2016 13:09:44 +0100 Subject: Add fz_remove to cope with utf-8 file names on windows. --- source/fitz/output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/fitz/output.c') diff --git a/source/fitz/output.c b/source/fitz/output.c index 55d2522f..a93ecc97 100644 --- a/source/fitz/output.c +++ b/source/fitz/output.c @@ -163,7 +163,7 @@ fz_new_output_with_path(fz_context *ctx, const char *filename, int append) /* Ensure we create a brand new file. We don't want to clobber our old file. */ if (!append) { - if (remove(filename) < 0) + if (fz_remove(filename) < 0) if (errno != ENOENT) fz_throw(ctx, FZ_ERROR_GENERIC, "cannot remove file '%s': %s", filename, strerror(errno)); } -- cgit v1.2.3