[Libreoffice-commits] core.git: connectivity/source
Lionel Elie Mamane
lionel at mamane.lu
Fri Jan 13 10:12:33 UTC 2017
connectivity/source/drivers/jdbc/Reader.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit afe64b6f0ab839955690f07929268a3d389279bf
Author: Lionel Elie Mamane <lionel at mamane.lu>
Date: Fri Jan 13 10:50:35 2017 +0100
jdbc clob character stream: return 1 when returning a single odd byte
if at that point nBytesToRead is 0, it may be that it was 1, but we
have read one byte from the buffer (m_buf). So in this case, return 1,
not 0 (which would signal EOF).
Change-Id: I229e53f1c38c80f709df244a3509caccd69c8ecf
Reviewed-on: https://gerrit.libreoffice.org/33029
Reviewed-by: Lionel Elie Mamane <lionel at mamane.lu>
Tested-by: Lionel Elie Mamane <lionel at mamane.lu>
diff --git a/connectivity/source/drivers/jdbc/Reader.cxx b/connectivity/source/drivers/jdbc/Reader.cxx
index 13ab238..665caaf 100644
--- a/connectivity/source/drivers/jdbc/Reader.cxx
+++ b/connectivity/source/drivers/jdbc/Reader.cxx
@@ -124,7 +124,7 @@ sal_Int32 SAL_CALL java_io_Reader::readBytes( css::uno::Sequence< sal_Int8 >& aD
}
if(nBytesToRead == 0)
- return 0;
+ return nBytesWritten;
sal_Int32 nCharsToRead = (nBytesToRead + 1)/2;
More information about the Libreoffice-commits
mailing list