We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f7f522 commit 8229a9dCopy full SHA for 8229a9d
build.properties
@@ -33,7 +33,7 @@ build.dir=classes
33
test.build.dir=testclasses
34
build.instr.dir=classesinstr
35
project=java_memcached-release
36
-ver=2.6.0
+ver=2.6.3
37
junit.jar=lib/junit.jar
38
slf4japi.jar=lib/slf4j-api-1.6.1.jar
39
slf4jsimple.jar=lib/slf4j-simple-1.6.1.jar
src/main/java/com/schooner/MemCached/SockInputStream.java
@@ -110,7 +110,10 @@ public final int read() throws IOException {
110
b = sock.readBuf.get();
111
}
112
count++;
113
- return b & 0xff;
+ /*
114
+ * a potencial bug for read int or read long.
115
+ */
116
+ return (b & 0xff);
117
118
119
/**
0 commit comments