Use NAN/INFINITY if available to init XPath NaN/Inf

This commit is contained in:
Sergey Kosukhin 2022-07-06 17:08:26 +02:00
parent ca2c91f139
commit c9925454fd

View File

@ -490,11 +490,17 @@ double xmlXPathNINF = 0.0;
ATTRIBUTE_NO_SANITIZE("float-divide-by-zero")
void
xmlXPathInit(void) {
#if defined(NAN) && defined(INFINITY)
xmlXPathNAN = NAN;
xmlXPathPINF = INFINITY;
xmlXPathNINF = -INFINITY;
#else
/* MSVC doesn't allow division by zero in constant expressions. */
double zero = 0.0;
xmlXPathNAN = 0.0 / zero;
xmlXPathPINF = 1.0 / zero;
xmlXPathNINF = -xmlXPathPINF;
#endif
}
/**