-
- Downloads
Fixed serious bug during decoding: Did not properly use the decoder when...
Fixed serious bug during decoding: Did not properly use the decoder when reading single 'elements' from a connection using method 'getc'. An element is either a character or a byte depending on the connection mode text or binary, respectively. Now, a stream decoder is created on demand and used for any subsequent character-based reading. As in GnuR, mixing binary- and text-based reading and writing leads to undefined behavior since the decoder may already have consumed some bytes.
Showing
- com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/conn/ConnectionSupport.java 1 addition, 1 deletion.../com/oracle/truffle/r/runtime/conn/ConnectionSupport.java
- com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/conn/DelegateRConnection.java 58 additions, 24 deletions...om/oracle/truffle/r/runtime/conn/DelegateRConnection.java
- com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/conn/DelegateReadRConnection.java 13 additions, 5 deletions...racle/truffle/r/runtime/conn/DelegateReadRConnection.java
- com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/conn/DelegateReadWriteRConnection.java 5 additions, 1 deletion.../truffle/r/runtime/conn/DelegateReadWriteRConnection.java
- com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/conn/RConnection.java 13 additions, 2 deletions...me/src/com/oracle/truffle/r/runtime/conn/RConnection.java
Please register or sign in to comment