Integer overflow in xmlURIEscapeStr (uri.c). Upstream fix
(8edbbdb0) adds `if (len == 0) return(NULL);` after xmlStrlen to
catch overflow where xmlStrlen returns 0 for a non-empty input.
Debian trixie's 2.9.14-based package already has the equivalent
guard `if (!(len > 0)) return(NULL);` at the same site, so the
bot's CVE-2026-86139 backport (#21567) is a no-op cosmetic rewrite
and is not carried. Verified against the deb13u3 source tree.