summaryrefslogtreecommitdiff
path: root/sal/textenc
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 12:52:22 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 12:52:22 +0000
commit04fc858178795bd3770f569fb0ccbb79684c5a67 (patch)
treeeb577134d0eb81b42f9f5889a5f5915bdae8cc60 /sal/textenc
parentd75867c44f03839173135575cc3df28d0faf11d0 (diff)
INTEGRATION: CWS ooo20031216 (1.3.202); FILE MERGED
2003/12/20 14:01:32 waratah 1.3.202.1: #i1858# correct some unitialised fields in code
Diffstat (limited to 'sal/textenc')
-rw-r--r--sal/textenc/tcvtutf7.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sal/textenc/tcvtutf7.c b/sal/textenc/tcvtutf7.c
index 36af0826829c..6a16769ecaff 100644
--- a/sal/textenc/tcvtutf7.c
+++ b/sal/textenc/tcvtutf7.c
@@ -2,9 +2,9 @@
*
* $RCSfile: tcvtutf7.c,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: sb $ $Date: 2001-10-17 14:35:30 $
+ * last change: $Author: hr $ $Date: 2004-02-04 13:52:22 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -191,8 +191,8 @@ sal_Size ImplUTF7ToUnicode( const ImplTextConverterData* pData, void* pContext,
sal_Size* pSrcCvtBytes )
{
ImplUTF7ToUCContextData* pContextData = (ImplUTF7ToUCContextData*)pContext;
- sal_uChar c;
- sal_uChar nBase64Value;
+ sal_uChar c ='\0';
+ sal_uChar nBase64Value = 0;
int bEnd = sal_False;
int bShifted;
int bFirst;
@@ -485,7 +485,7 @@ sal_Size ImplUnicodeToUTF7( const ImplTextConverterData* pData, void* pContext,
sal_Size* pSrcCvtChars )
{
ImplUTF7FromUCContextData* pContextData = (ImplUTF7FromUCContextData*)pContext;
- sal_Unicode c;
+ sal_Unicode c = '\0';
int bEnd = sal_False;
int bShifted;
int bNeedShift;