1From 37cedc0b1563e5e312a924ac07168722a4e768d8 Mon Sep 17 00:00:00 2001
2From: Nick Wellnhofer <wellnhofer@aevum.de>
3Date: Mon, 22 Aug 2022 14:04:07 +0200
4Subject: [PATCH] Fix htmlReadMemory mixing up XML and HTML functions
5
6Also see fe6890e2.
7Reference:https://github.com/GNOME/libxml2/commit/37cedc0b1563e5e312a924ac07168722a4e768d8
8Conflict:NA
9---
10 HTMLparser.c | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/HTMLparser.c b/HTMLparser.c
14index e720bb2..c6b2183 100644
15--- a/HTMLparser.c
16+++ b/HTMLparser.c
17@@ -6977,7 +6977,7 @@ htmlReadMemory(const char *buffer, int size, const char *URL, const char *encodi
18     htmlParserCtxtPtr ctxt;
19 
20     xmlInitParser();
21-    ctxt = xmlCreateMemoryParserCtxt(buffer, size);
22+    ctxt = htmlCreateMemoryParserCtxt(buffer, size);
23     if (ctxt == NULL)
24         return (NULL);
25     htmlDefaultSAXHandlerInit();
26-- 
272.27.0
28
29