1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-16 07:21:58 +03:00

another patch from Malcolm Tredinnick fixing warning generated by the

* acconfig.h config.h.in configure.in xmlIO.c xmlregexp.c xmlschemas.c
  xmlschemastypes.c: another patch from Malcolm Tredinnick fixing
  warning generated by the Nonstop Kernel Open System Services
  compiler #151710
Daniel
This commit is contained in:
Daniel Veillard
2004-09-28 12:33:52 +00:00
parent a81355ef66
commit c7e3cc49ba
8 changed files with 20 additions and 14 deletions

View File

@ -12534,7 +12534,6 @@ xmlSchemaParse(xmlSchemaParserCtxtPtr ctxt)
xmlSchemaPtr ret = NULL;
xmlDocPtr doc;
xmlNodePtr root;
int nberrors;
int preserve = 0;
/*
@ -12547,7 +12546,6 @@ xmlSchemaParse(xmlSchemaParserCtxtPtr ctxt)
if (ctxt == NULL)
return (NULL);
nberrors = ctxt->nberrors;
ctxt->nberrors = 0;
ctxt->counter = 0;
ctxt->container = NULL;
@ -12895,7 +12893,7 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt,
xmlSchemaTypePtr biType; /* The build-in type. */
xmlSchemaTypePtr tmpType;
xmlSchemaFacetLinkPtr facetLink;
int retFacet, hasFacet;
int retFacet;
xmlSchemaFacetPtr facet;
unsigned long len = 0;
@ -12997,7 +12995,6 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt,
* Process patters. Pattern facets are ORed at type level
* and ANDed if derived. Walk the base type axis.
*/
hasFacet = 0;
tmpType = type;
facet = NULL;
do {