mobi reading bugfix

This commit is contained in:
simon987 2020-07-16 19:51:14 -04:00
parent 9a240f039b
commit 7c1a832360
2 changed files with 5 additions and 2 deletions

View File

@ -102,7 +102,9 @@ int render_cover(scan_ebook_ctx_t *ctx, fz_context *fzctx, document_t *doc, fz_d
void fz_err_callback(void *user, const char *message) {
document_t *doc = (document_t *) user;
thread_ctx.logf(doc->filepath, LEVEL_WARNING,"FZ: %s", message);
const scan_ebook_ctx_t *ctx = &thread_ctx;
CTX_LOG_WARNINGF(doc->filepath, "FZ: %s", message);
}
static void init_fzctx(fz_context *fzctx, document_t *doc) {

View File

@ -1,6 +1,7 @@
#include "scan_mobi.h"
#include <mobi.h>
#include <errno.h>
#include "stdlib.h"
void parse_mobi(scan_mobi_ctx_t *ctx, vfile_t *f, document_t *doc) {
@ -18,7 +19,7 @@ void parse_mobi(scan_mobi_ctx_t *ctx, vfile_t *f, document_t *doc) {
if (file == NULL) {
mobi_free(m);
free(buf);
CTX_LOG_ERRORF(f->filepath, "fmemopen() failed: %d", ferror(file))
CTX_LOG_ERRORF(f->filepath, "fmemopen() failed (%d)", errno)
return;
}