We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d4c5f6 commit dd25c60Copy full SHA for dd25c60
rvm/src/org/jikesrvm/util/AddressInputStream.java
@@ -61,7 +61,7 @@ public int read() throws IOException {
61
}
62
byte result = location.loadByte(offset);
63
offset = offset.plus(1);
64
- return result;
+ return result & 0xFF;
65
66
/** Reset to mark */
67
@Override
0 commit comments