From 4dd5e70406cde09fd981a6d63681660999bb86a5 Mon Sep 17 00:00:00 2001 From: Shy Date: Thu, 23 Jan 2025 21:40:37 -0500 Subject: [PATCH] Fix #492 --- third-party/libscan/libscan/ebook/ebook.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/third-party/libscan/libscan/ebook/ebook.c b/third-party/libscan/libscan/ebook/ebook.c index 1bc026d..874d62d 100644 --- a/third-party/libscan/libscan/ebook/ebook.c +++ b/third-party/libscan/libscan/ebook/ebook.c @@ -175,9 +175,19 @@ int render_cover(scan_ebook_ctx_t *ctx, fz_context *fzctx, document_t *doc, fz_d return TRUE; } +#define IS_IGNORED_MESSAGE(message) \ + ( \ + strstr(message, "invalid glyph index") \ + || strstr(message, "... repeated") \ + ) \ + void fz_err_callback(void *user, const char *message) { document_t *doc = (document_t *) user; + if (IS_IGNORED_MESSAGE(message)) { + return; + } + const scan_ebook_ctx_t *ctx = &thread_ctx; CTX_LOG_WARNINGF(doc->filepath, "FZ: %s", message); } @@ -185,6 +195,10 @@ void fz_err_callback(void *user, const char *message) { void fz_warn_callback(void *user, const char *message) { document_t *doc = (document_t *) user; + if (IS_IGNORED_MESSAGE(message)) { + return; + } + const scan_ebook_ctx_t *ctx = &thread_ctx; CTX_LOG_DEBUGF(doc->filepath, "FZ: %s", message); }