From 8873a49846f5cd697b06c508664bfd0be0c4179d Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Sun, 9 Mar 2025 16:21:13 +0100 Subject: [PATCH] html: Fix areBlanks check Short-lived regression from 71122421. --- HTMLparser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HTMLparser.c b/HTMLparser.c index 02ab081e..9daa6274 100644 --- a/HTMLparser.c +++ b/HTMLparser.c @@ -2973,7 +2973,7 @@ htmlCharDataSAXCallback(htmlParserCtxtPtr ctxt, const xmlChar *buf, if ((mode == 0) && (!ctxt->keepBlanks) && - (areBlanks(ctxt, buf, size))) { + (areBlanks(ctxt, buf, size) > 0)) { if (ctxt->sax->ignorableWhitespace != NULL) ctxt->sax->ignorableWhitespace(ctxt->userData, buf, size); } else {