summaryrefslogtreecommitdiff
path: root/comphelper/source/streaming
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2001-02-02 15:10:26 +0000
committerOcke Janssen <oj@openoffice.org>2001-02-02 15:10:26 +0000
commit7b7ba81ca8c65d7b9f84550fb9fdcac71fffb933 (patch)
tree018207c0cf710a3e5a231b5309d18dd58d2ed287 /comphelper/source/streaming
parent56a6ebfbf9e82ee71cee88d0869489652382f3ed (diff)
change < in >
Diffstat (limited to 'comphelper/source/streaming')
-rw-r--r--comphelper/source/streaming/seqstream.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/comphelper/source/streaming/seqstream.cxx b/comphelper/source/streaming/seqstream.cxx
index 3dd0f42c9fa4..f760e088de22 100644
--- a/comphelper/source/streaming/seqstream.cxx
+++ b/comphelper/source/streaming/seqstream.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: seqstream.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: oj $ $Date: 2001-02-02 14:56:32 $
+ * last change: $Author: oj $ $Date: 2001-02-02 16:10:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -188,7 +188,7 @@ void SAL_CALL OSequenceOutputStream::writeBytes( const Sequence< sal_Int8 >& _rD
throw NotConnectedException();
// ensure the sequence has enoungh space left
- if (m_nSize + _rData.getLength() < m_rSequence.getLength())
+ if (m_nSize + _rData.getLength() > m_rSequence.getLength())
{
sal_Int32 nCurrentLength = m_rSequence.getLength();
sal_Int32 nNewLength = nCurrentLength * m_nResizeFactor;