mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 05:34:59 +00:00
doProlog(): Use NULL instead of 0 to clear pointer variables.
getContext(): The needSep local is Boolean, so declare & set it that way.
This commit is contained in:
parent
4f4ed4952d
commit
f9777c9428
1 changed files with 6 additions and 6 deletions
|
@ -3404,11 +3404,11 @@ doProlog(XML_Parser parser,
|
|||
return XML_ERROR_NO_MEMORY;
|
||||
if (declEntity->name != name) {
|
||||
poolDiscard(&dtd.pool);
|
||||
declEntity = 0;
|
||||
declEntity = NULL;
|
||||
}
|
||||
else {
|
||||
poolFinish(&dtd.pool);
|
||||
declEntity->publicId = 0;
|
||||
declEntity->publicId = NULL;
|
||||
declEntity->is_param = XML_TRUE;
|
||||
/* if we have a parent parser or are reading an internal parameter
|
||||
entity, then the entity declaration is not considered "internal"
|
||||
|
@ -4426,7 +4426,7 @@ static const XML_Char *
|
|||
getContext(XML_Parser parser)
|
||||
{
|
||||
HASH_TABLE_ITER iter;
|
||||
int needSep = 0;
|
||||
XML_Bool needSep = XML_FALSE;
|
||||
|
||||
if (dtd.defaultPrefix.binding) {
|
||||
int i;
|
||||
|
@ -4439,7 +4439,7 @@ getContext(XML_Parser parser)
|
|||
for (i = 0; i < len; i++)
|
||||
if (!poolAppendChar(&tempPool, dtd.defaultPrefix.binding->uri[i]))
|
||||
return NULL;
|
||||
needSep = 1;
|
||||
needSep = XML_TRUE;
|
||||
}
|
||||
|
||||
hashTableIterInit(&iter, &(dtd.prefixes));
|
||||
|
@ -4465,7 +4465,7 @@ getContext(XML_Parser parser)
|
|||
for (i = 0; i < len; i++)
|
||||
if (!poolAppendChar(&tempPool, prefix->binding->uri[i]))
|
||||
return NULL;
|
||||
needSep = 1;
|
||||
needSep = XML_TRUE;
|
||||
}
|
||||
|
||||
|
||||
|
@ -4482,7 +4482,7 @@ getContext(XML_Parser parser)
|
|||
for (s = e->name; *s; s++)
|
||||
if (!poolAppendChar(&tempPool, *s))
|
||||
return 0;
|
||||
needSep = 1;
|
||||
needSep = XML_TRUE;
|
||||
}
|
||||
|
||||
if (!poolAppendChar(&tempPool, XML_T('\0')))
|
||||
|
|
Loading…
Add table
Reference in a new issue