You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/jax-rpc/files/jax-rpc-1.1.3.01-length.patch

12 lines
507 B

--- src/com/sun/xml/rpc/streaming/FastInfosetReader.java.vanilla 2007-03-18 16:27:14.000000000 +0100
+++ src/com/sun/xml/rpc/streaming/FastInfosetReader.java 2007-03-18 16:26:23.000000000 +0100
@@ -296,7 +296,7 @@
private boolean isWhiteSpaceCharacters() {
int i = _charactersOffset;
- final int end = i + _charactersLength;
+ final int end = i + _characters.length;
while (i < end) {
if (_characters[i++] > '\u0020') {
return false;