gdesrosiers1805 opened a new pull request, #64: URL: https://github.com/apache/xerces-c/pull/64
NaN silently passes bounds validation due to missing INDETERMINATE checks: Root Cause: Total Order assumption broken by NaN (4th value) - minInclusive: `if (result == -1)` → misses 4th value, INDETERMINATE(2) - maxInclusive: `if (result == 1)` → misses 4th value, INDETERMINATE(2) NOTE: minExclusive/maxExclusive correctly catch NaN. Bug affects inclusive facets only. Fix: Report value error when: - (result != 1 && result != 0) for minInclusive - (result != -1 && result != 0) for maxInclusive -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
