summaryrefslogtreecommitdiff
path: root/io/source/TextInputStream
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-09-08 15:11:11 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-09-08 15:11:11 +0000
commit617181023679eea7a0b7fc5dc70d997a9b2bdfe4 (patch)
tree4d8178117c29fdc630345e1b9d28f7bce716ccae /io/source/TextInputStream
parent8c8feca7dc74c0ad64c4a4a950686c44e9062a25 (diff)
INTEGRATION: CWS ooo20040704 (1.10.16); FILE MERGED
2004/06/30 13:12:01 waratah 1.10.16.1: #i30874# Add initial values to potentially uninitialised values
Diffstat (limited to 'io/source/TextInputStream')
-rw-r--r--io/source/TextInputStream/TextInputStream.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/io/source/TextInputStream/TextInputStream.cxx b/io/source/TextInputStream/TextInputStream.cxx
index 20e1cdb65..f06e98ac2 100644
--- a/io/source/TextInputStream/TextInputStream.cxx
+++ b/io/source/TextInputStream/TextInputStream.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: TextInputStream.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: hr $ $Date: 2004-02-02 20:22:48 $
+ * last change: $Author: rt $ $Date: 2004-09-08 16:11:11 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -245,7 +245,7 @@ OUString OTextInputStream::implReadString( const Sequence< sal_Unicode >& Delimi
sal_Int32 nCopyLen = 0;
sal_Bool bFound = sal_False;
sal_Bool bFoundFirstLineEndChar = sal_False;
- sal_Unicode cFirstLineEndChar;
+ sal_Unicode cFirstLineEndChar = 0;
const sal_Unicode* pDelims = Delimiters.getConstArray();
const sal_Int32 nDelimCount = Delimiters.getLength();
while( !bFound )