32 lines
800 B
Diff
32 lines
800 B
Diff
|
|
From a5d580af424bde0c83ad64fcc8bd3beff1db317d Mon Sep 17 00:00:00 2001
|
||
|
|
From: Sebastian Pipping <sebastian@pipping.org>
|
||
|
|
Date: Mon, 19 Aug 2024 22:26:07 +0200
|
||
|
|
Subject: [PATCH] lib: Reject negative len for XML_ParseBuffer
|
||
|
|
|
||
|
|
Reported by TaiYou
|
||
|
|
---
|
||
|
|
lib/xmlparse.c | 6 ++++++
|
||
|
|
1 file changed, 6 insertions(+)
|
||
|
|
|
||
|
|
diff --git a/lib/xmlparse.c b/lib/xmlparse.c
|
||
|
|
index bd6aa72..8b9046e 100644
|
||
|
|
--- a/lib/xmlparse.c
|
||
|
|
+++ b/lib/xmlparse.c
|
||
|
|
@@ -2016,6 +2016,12 @@ XML_ParseBuffer(XML_Parser parser, int len, int isFinal) {
|
||
|
|
|
||
|
|
if (parser == NULL)
|
||
|
|
return XML_STATUS_ERROR;
|
||
|
|
+
|
||
|
|
+ if (len < 0) {
|
||
|
|
+ parser->m_errorCode = XML_ERROR_INVALID_ARGUMENT;
|
||
|
|
+ return XML_STATUS_ERROR;
|
||
|
|
+ }
|
||
|
|
+
|
||
|
|
switch (parser->m_parsingStatus.parsing) {
|
||
|
|
case XML_SUSPENDED:
|
||
|
|
parser->m_errorCode = XML_ERROR_SUSPENDED;
|
||
|
|
--
|
||
|
|
2.33.0
|
||
|
|
|
||
|
|
|