mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:13:06 +00:00
[LIBXML2] Update to version 2.10.0. CORE-17766
This commit is contained in:
parent
608bbe1136
commit
911153da10
80 changed files with 2351 additions and 20735 deletions
10
sdk/lib/3rdparty/libxml2/xmlstring.c
vendored
10
sdk/lib/3rdparty/libxml2/xmlstring.c
vendored
|
@ -424,13 +424,7 @@ xmlStrsub(const xmlChar *str, int start, int len) {
|
|||
|
||||
int
|
||||
xmlStrlen(const xmlChar *str) {
|
||||
size_t len = 0;
|
||||
|
||||
if (str == NULL) return(0);
|
||||
while (*str != 0) { /* non input consuming */
|
||||
str++;
|
||||
len++;
|
||||
}
|
||||
size_t len = str ? strlen((const char *)str) : 0;
|
||||
return(len > INT_MAX ? 0 : len);
|
||||
}
|
||||
|
||||
|
@ -1051,5 +1045,3 @@ xmlEscapeFormatString(xmlChar **msg)
|
|||
return *msg;
|
||||
}
|
||||
|
||||
#define bottom_xmlstring
|
||||
#include "elfgcchack.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue