20 lines
533 B
Diff
20 lines
533 B
Diff
|
commit e5b609876e5a266725fba1c377b0ac95c737e6ed
|
||
|
Author: Tomas Korbar <tkorbar@redhat.com>
|
||
|
Date: Mon May 2 12:44:06 2022 +0200
|
||
|
|
||
|
Fix CVE-2022-25314
|
||
|
|
||
|
diff --git a/lib/xmlparse.c b/lib/xmlparse.c
|
||
|
index 1f1413f..ceeec26 100644
|
||
|
--- a/lib/xmlparse.c
|
||
|
+++ b/lib/xmlparse.c
|
||
|
@@ -7525,7 +7525,7 @@ static XML_Char *
|
||
|
copyString(const XML_Char *s,
|
||
|
const XML_Memory_Handling_Suite *memsuite)
|
||
|
{
|
||
|
- int charsRequired = 0;
|
||
|
+ size_t charsRequired = 0;
|
||
|
XML_Char *result;
|
||
|
|
||
|
/* First determine how long the string is */
|