* Optimizations

* Reduced memory for attribute and body objects, see `XML_NEW_DIFFERENTIATE` compile-time option.
  * Optimized cbuf handling in parsing and xml2cbuf functions.
  * Optimized xml scanner to read strings rather than single chars
  * Optimized xml_merge for the case of disjunct trees.
This commit is contained in:
Olof hagsand 2020-04-28 22:31:58 +02:00
parent 9a8c6cf3e6
commit 94cf4a88b3
24 changed files with 477 additions and 257 deletions

View file

@ -510,7 +510,7 @@ xmlns_set(cxobj *x,
return retval;
}
/*! Get namespace given prefix recursively
/*! Get prefix of given namespace recursively
* @param[in] xn XML node
* @param[in] namespace Namespace
* @param[out] prefixp Pointer to prefix if found
@ -567,7 +567,8 @@ xml2prefix(cxobj *xn,
done:
return retval;
found:
*prefixp = prefix;
if (prefixp)
*prefixp = prefix;
retval = 1;
goto done;
}