[libxml2] Fix htmlReadMemory mixing up XML and HTML functions



commit 37cedc0b1563e5e312a924ac07168722a4e768d8
Author: Nick Wellnhofer <wellnhofer aevum de>
Date:   Mon Aug 22 14:04:07 2022 +0200

    Fix htmlReadMemory mixing up XML and HTML functions
    
    Also see fe6890e2.

 HTMLparser.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/HTMLparser.c b/HTMLparser.c
index 0100dbee..2aeb7794 100644
--- a/HTMLparser.c
+++ b/HTMLparser.c
@@ -6992,7 +6992,7 @@ htmlReadMemory(const char *buffer, int size, const char *URL, const char *encodi
     htmlParserCtxtPtr ctxt;
 
     xmlInitParser();
-    ctxt = xmlCreateMemoryParserCtxt(buffer, size);
+    ctxt = htmlCreateMemoryParserCtxt(buffer, size);
     if (ctxt == NULL)
         return (NULL);
     htmlDefaultSAXHandlerInit();


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]