#32 Action255 bug

This commit is contained in:
Jindra Petk
2013-02-22 22:06:45 +01:00
parent ed6afee9a8
commit 33781324b8

View File

@@ -62,10 +62,13 @@ public class ReReadableInputStream extends InputStream {
return ret;
}
int i = is.read();
baos.write(i);
count++;
if(i>-1){
baos.write(i);
count++;
}
pos++;
converted = null;
return i;
}