diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-09-08 15:11:11 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-09-08 15:11:11 +0000 |
commit | 843cb05b5c67162eb1bb17b72fcba1efb3bf1be9 (patch) | |
tree | 7377b448575b3b8e8388b1b76a1cd86eac7766b4 /io | |
parent | a83a7968c1c85c3d75acf7cc513ecf953fef9ab3 (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')
-rw-r--r-- | io/source/TextInputStream/TextInputStream.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/io/source/TextInputStream/TextInputStream.cxx b/io/source/TextInputStream/TextInputStream.cxx index f554dd51a2ee..20498ddc4e5d 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 ) |