mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-03 10:01:24 +02:00
upgraded bundled expat to 2.1.1
This commit is contained in:
parent
8a42d7d64f
commit
4236d130fa
@ -1038,7 +1038,7 @@ XML_GetFeatureList(void);
|
|||||||
*/
|
*/
|
||||||
#define XML_MAJOR_VERSION 2
|
#define XML_MAJOR_VERSION 2
|
||||||
#define XML_MINOR_VERSION 1
|
#define XML_MINOR_VERSION 1
|
||||||
#define XML_MICRO_VERSION 0
|
#define XML_MICRO_VERSION 1
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
@ -1685,6 +1685,10 @@ XML_ParseBuffer(XML_Parser parser, int len, int isFinal)
|
|||||||
void * XMLCALL
|
void * XMLCALL
|
||||||
XML_GetBuffer(XML_Parser parser, int len)
|
XML_GetBuffer(XML_Parser parser, int len)
|
||||||
{
|
{
|
||||||
|
if (len < 0) {
|
||||||
|
errorCode = XML_ERROR_NO_MEMORY;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
switch (ps_parsing) {
|
switch (ps_parsing) {
|
||||||
case XML_SUSPENDED:
|
case XML_SUSPENDED:
|
||||||
errorCode = XML_ERROR_SUSPENDED;
|
errorCode = XML_ERROR_SUSPENDED;
|
||||||
@ -1696,8 +1700,11 @@ XML_GetBuffer(XML_Parser parser, int len)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (len > bufferLim - bufferEnd) {
|
if (len > bufferLim - bufferEnd) {
|
||||||
/* FIXME avoid integer overflow */
|
|
||||||
int neededSize = len + (int)(bufferEnd - bufferPtr);
|
int neededSize = len + (int)(bufferEnd - bufferPtr);
|
||||||
|
if (neededSize < 0) {
|
||||||
|
errorCode = XML_ERROR_NO_MEMORY;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
#ifdef XML_CONTEXT_BYTES
|
#ifdef XML_CONTEXT_BYTES
|
||||||
int keep = (int)(bufferPtr - buffer);
|
int keep = (int)(bufferPtr - buffer);
|
||||||
|
|
||||||
@ -1726,7 +1733,11 @@ XML_GetBuffer(XML_Parser parser, int len)
|
|||||||
bufferSize = INIT_BUFFER_SIZE;
|
bufferSize = INIT_BUFFER_SIZE;
|
||||||
do {
|
do {
|
||||||
bufferSize *= 2;
|
bufferSize *= 2;
|
||||||
} while (bufferSize < neededSize);
|
} while (bufferSize < neededSize && bufferSize > 0);
|
||||||
|
if (bufferSize <= 0) {
|
||||||
|
errorCode = XML_ERROR_NO_MEMORY;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
newBuf = (char *)MALLOC(bufferSize);
|
newBuf = (char *)MALLOC(bufferSize);
|
||||||
if (newBuf == 0) {
|
if (newBuf == 0) {
|
||||||
errorCode = XML_ERROR_NO_MEMORY;
|
errorCode = XML_ERROR_NO_MEMORY;
|
||||||
@ -2918,6 +2929,8 @@ storeAtts(XML_Parser parser, const ENCODING *enc,
|
|||||||
unsigned long uriHash = hash_secret_salt;
|
unsigned long uriHash = hash_secret_salt;
|
||||||
((XML_Char *)s)[-1] = 0; /* clear flag */
|
((XML_Char *)s)[-1] = 0; /* clear flag */
|
||||||
id = (ATTRIBUTE_ID *)lookup(parser, &dtd->attributeIds, s, 0);
|
id = (ATTRIBUTE_ID *)lookup(parser, &dtd->attributeIds, s, 0);
|
||||||
|
if (!id || !id->prefix)
|
||||||
|
return XML_ERROR_NO_MEMORY;
|
||||||
b = id->prefix->binding;
|
b = id->prefix->binding;
|
||||||
if (!b)
|
if (!b)
|
||||||
return XML_ERROR_UNBOUND_PREFIX;
|
return XML_ERROR_UNBOUND_PREFIX;
|
||||||
@ -5482,6 +5495,8 @@ getAttributeId(XML_Parser parser, const ENCODING *enc,
|
|||||||
return NULL;
|
return NULL;
|
||||||
id->prefix = (PREFIX *)lookup(parser, &dtd->prefixes, poolStart(&dtd->pool),
|
id->prefix = (PREFIX *)lookup(parser, &dtd->prefixes, poolStart(&dtd->pool),
|
||||||
sizeof(PREFIX));
|
sizeof(PREFIX));
|
||||||
|
if (!id->prefix)
|
||||||
|
return NULL;
|
||||||
if (id->prefix->name == poolStart(&dtd->pool))
|
if (id->prefix->name == poolStart(&dtd->pool))
|
||||||
poolFinish(&dtd->pool);
|
poolFinish(&dtd->pool);
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user