summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-06-09 14:36:53 +0200
committerNoel Grandin <noel@peralex.com>2016-06-09 14:37:47 +0200
commit6363f7277fc9efc86ac699d0ea973021ed2b652c (patch)
treed6627f39a109941cc289f47e84eef163f1d2ab00 /lotuswordpro
parent3724a9fa0d923c848d542562637880493cde9ca9 (diff)
remove "read request longer than buffer" warning
code is actually relying on this clamping behaviour Change-Id: I7f85679929b2c163dbabe01fc7bb8f1fe2327679
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpobjstrm.cxx1
1 files changed, 0 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpobjstrm.cxx b/lotuswordpro/source/filter/lwpobjstrm.cxx
index 748b48f1b24a..bb7e255059b3 100644
--- a/lotuswordpro/source/filter/lwpobjstrm.cxx
+++ b/lotuswordpro/source/filter/lwpobjstrm.cxx
@@ -169,7 +169,6 @@ sal_uInt16 LwpObjectStream::QuickRead(void* buf, sal_uInt16 len)
memset(buf, 0, len);
if( len > m_nBufSize - m_nReadPos )
{
- SAL_WARN("lwp", "read request longer than buffer");
len = m_nBufSize - m_nReadPos;
}
if( m_pContentBuf && len)