summaryrefslogtreecommitdiff
path: root/xmlscript
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2001-03-19 09:08:36 +0000
committerDaniel Boelzle <dbo@openoffice.org>2001-03-19 09:08:36 +0000
commitad38c63275f93790582d481b238ab6fa75557252 (patch)
tree18e89df9d3895153f336a25c8797a43ec7a6e14d /xmlscript
parentf0bec2e13fb355296bb2d35be5ac49dce4545398 (diff)
corrected stream reading
Diffstat (limited to 'xmlscript')
-rw-r--r--xmlscript/test/imexp.cxx23
1 files changed, 13 insertions, 10 deletions
diff --git a/xmlscript/test/imexp.cxx b/xmlscript/test/imexp.cxx
index 5b608d1cddc7..8ca57a573c2d 100644
--- a/xmlscript/test/imexp.cxx
+++ b/xmlscript/test/imexp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: imexp.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: dbo $ $Date: 2001-03-16 11:48:02 $
+ * last change: $Author: dbo $ $Date: 2001-03-19 10:08:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -258,19 +258,22 @@ void exportToFile(
Reference< io::XInputStream > xStream( xProvider->createInputStream() );
Sequence< sal_Int8 > bytes;
- sal_Int32 nPos = xStream->readBytes( bytes, xStream->available() );
- while (xStream->available() > 0)
+ sal_Int32 nRead = xStream->readBytes( bytes, xStream->available() );
+ for (;;)
{
- Sequence< sal_Int8 > addBytes;
- sal_Int32 nRead = xStream->readBytes( addBytes, xStream->available() );
+ Sequence< sal_Int8 > readBytes;
+ nRead = xStream->readBytes( readBytes, 1024 );
+ if (! nRead)
+ break;
+
+ sal_Int32 nPos = bytes.getLength();
+ bytes.realloc( nPos + nRead );
sal_Int8 * pBytes = bytes.getArray();
- sal_Int8 const * pAddBytes = addBytes.getConstArray();
- sal_Int32 nPos = nRead;
+ sal_Int8 const * pReadBytes = readBytes.getConstArray();
while (nRead--)
{
- pBytes[ nPos + nPos ] = pAddBytes[ nPos ];
+ pBytes[ nPos + nRead ] = pReadBytes[ nRead ];
}
- nPos += nRead;
}
FILE * f = ::fopen( fname, "w" );