natString.cc (init(jbyteArray,jint,jint,jstring)): Set count to 0 when InputStreamReader returns -1 for EOF.
* java/lang/natString.cc (init(jbyteArray,jint,jint,jstring)): Set count to 0 when InputStreamReader returns -1 for EOF. From-SVN: r26273
This commit is contained in:
parent
dc4618f922
commit
9a566c0926
2 changed files with 9 additions and 0 deletions
|
@ -392,6 +392,10 @@ java::lang::String::init (jbyteArray bytes, jint offset, jint count,
|
|||
boffset = (char *) elements (array) - (char *) array;
|
||||
// FIXME: this can throw IOException.
|
||||
this->count = ir->read(array, 0, count);
|
||||
|
||||
// In case read() doesn't read anything, change -1 for EOF to a count of 0.
|
||||
if (this->count < 0)
|
||||
this->count = 0;
|
||||
}
|
||||
|
||||
jboolean
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue