mirror of
https://github.com/openharmony/third_party_libxml2.git
synced 2026-08-24 23:31:27 -04:00
65eff78cfd
Signed-off-by: @ran-zhao-yu <ranzhaoyu1@huawei.com>
30 lines
828 B
Diff
30 lines
828 B
Diff
From 92721970884fcc13305cb8e23cdc5f0dd7667c2c Mon Sep 17 00:00:00 2001
|
|
From: Nick Wellnhofer <wellnhofer@aevum.de>
|
|
Date: Sat, 14 Oct 2023 22:45:54 +0200
|
|
Subject: [PATCH] [CVE-2024-25062] xmlreader: Don't expand XIncludes when
|
|
backtracking
|
|
|
|
Fixes a use-after-free if XML Reader if used with DTD validation and
|
|
XInclude expansion.
|
|
|
|
Fixes #604.
|
|
---
|
|
xmlreader.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/xmlreader.c b/xmlreader.c
|
|
index 5c37738e..1f903306 100644
|
|
--- a/xmlreader.c
|
|
+++ b/xmlreader.c
|
|
@@ -1378,6 +1378,7 @@ node_found:
|
|
* Handle XInclude if asked for
|
|
*/
|
|
if ((reader->xinclude) && (reader->in_xinclude == 0) &&
|
|
+ (reader->state != XML_TEXTREADER_BACKTRACK) &&
|
|
(reader->node != NULL) &&
|
|
(reader->node->type == XML_ELEMENT_NODE) &&
|
|
(reader->node->ns != NULL) &&
|
|
--
|
|
GitLab
|
|
|