From afe64b6f0ab839955690f07929268a3d389279bf Mon Sep 17 00:00:00 2001 From: Lionel Elie Mamane Date: Fri, 13 Jan 2017 10:50:35 +0100 Subject: 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 Tested-by: Lionel Elie Mamane --- connectivity/source/drivers/jdbc/Reader.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'connectivity') diff --git a/connectivity/source/drivers/jdbc/Reader.cxx b/connectivity/source/drivers/jdbc/Reader.cxx index 13ab23892e1a..665caaf381d9 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; -- cgit