mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Remove useless comparisons
Found by lgtm.com
This commit is contained in:
parent
c9faa29259
commit
9bd7abfba4
@ -1251,7 +1251,6 @@ xmlNanoFTPConnectTo(const char *server, int port) {
|
||||
xmlNanoFTPFreeCtxt(ctxt);
|
||||
return(NULL);
|
||||
}
|
||||
if (port != 0)
|
||||
ctxt->port = port;
|
||||
res = xmlNanoFTPConnect(ctxt);
|
||||
if (res < 0) {
|
||||
|
1
parser.c
1
parser.c
@ -3912,7 +3912,6 @@ xmlParseAttValueComplex(xmlParserCtxtPtr ctxt, int *attlen, int normalize) {
|
||||
"AttValue length too long\n");
|
||||
goto mem_error;
|
||||
}
|
||||
if (c == 0) break;
|
||||
if (c == '&') {
|
||||
in_space = 0;
|
||||
if (NXT(1) == '#') {
|
||||
|
5
valid.c
5
valid.c
@ -5919,8 +5919,7 @@ xmlValidatePushCData(xmlValidCtxtPtr ctxt, const xmlChar *data, int len) {
|
||||
break;
|
||||
case XML_ELEMENT_TYPE_MIXED:
|
||||
break;
|
||||
case XML_ELEMENT_TYPE_ELEMENT:
|
||||
if (len > 0) {
|
||||
case XML_ELEMENT_TYPE_ELEMENT: {
|
||||
int i;
|
||||
|
||||
for (i = 0;i < len;i++) {
|
||||
@ -5939,11 +5938,11 @@ xmlValidatePushCData(xmlValidCtxtPtr ctxt, const xmlChar *data, int len) {
|
||||
* element types with element content, if white space
|
||||
* occurs directly within any instance of those types.
|
||||
*/
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
done:
|
||||
return(ret);
|
||||
}
|
||||
|
@ -6055,7 +6055,7 @@ xmlAutomataNewOnceTrans2(xmlAutomataPtr am, xmlAutomataStatePtr from,
|
||||
return(NULL);
|
||||
if (min < 1)
|
||||
return(NULL);
|
||||
if ((max < min) || (max < 1))
|
||||
if (max < min)
|
||||
return(NULL);
|
||||
atom = xmlRegNewAtom(am, XML_REGEXP_STRING);
|
||||
if (atom == NULL)
|
||||
@ -6134,7 +6134,7 @@ xmlAutomataNewOnceTrans(xmlAutomataPtr am, xmlAutomataStatePtr from,
|
||||
return(NULL);
|
||||
if (min < 1)
|
||||
return(NULL);
|
||||
if ((max < min) || (max < 1))
|
||||
if (max < min)
|
||||
return(NULL);
|
||||
atom = xmlRegNewAtom(am, XML_REGEXP_STRING);
|
||||
if (atom == NULL)
|
||||
|
@ -24184,7 +24184,7 @@ xmlSchemaValidateFacets(xmlSchemaAbstractCtxtPtr actxt,
|
||||
unsigned long length,
|
||||
int fireErrors)
|
||||
{
|
||||
int ret, error = 0;
|
||||
int ret, error = 0, found;
|
||||
|
||||
xmlSchemaTypePtr tmpType;
|
||||
xmlSchemaFacetLinkPtr facetLink;
|
||||
@ -24308,8 +24308,7 @@ WXS_IS_LIST:
|
||||
}
|
||||
|
||||
pattern_and_enum:
|
||||
if (error >= 0) {
|
||||
int found = 0;
|
||||
found = 0;
|
||||
/*
|
||||
* Process enumerations. Facet values are in the value space
|
||||
* of the defining type's base type. This seems to be a bug in the
|
||||
@ -24356,10 +24355,7 @@ pattern_and_enum:
|
||||
if (error == 0)
|
||||
error = ret;
|
||||
}
|
||||
}
|
||||
|
||||
if (error >= 0) {
|
||||
int found;
|
||||
/*
|
||||
* Process patters. Pattern facets are ORed at type level
|
||||
* and ANDed if derived. Walk the base type axis.
|
||||
@ -24404,7 +24400,6 @@ pattern_and_enum:
|
||||
}
|
||||
tmpType = tmpType->baseType;
|
||||
} while ((tmpType != NULL) && (tmpType->type != XML_SCHEMA_TYPE_BASIC));
|
||||
}
|
||||
|
||||
return (error);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user