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
commit5e43b81c44b58dd82c3adb301f6ca26666d97208 (patch)
tree191a2d5dbad28f2d35f37bab6e8ce6076a493c9c /sal/textenc
parente8d5ad80df0bbe9c7fea4e5922d69e384bb4ba43 (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 36af08268..6a16769ec 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;