summaryrefslogtreecommitdiff
path: root/jvmfwk/source/fwkutil.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-09-08 15:03:51 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-09-08 15:03:51 +0000
commit97c236d4b0abe928344c5a5eebb8be008517d286 (patch)
tree7c3e7f793b9835738cf91aa18c08b7119b3d7ad7 /jvmfwk/source/fwkutil.cxx
parent572674632c7bb1f943d514b3aeb0beab2f2975ad (diff)
INTEGRATION: CWS ooo20040704 (1.17.8); FILE MERGED
2004/08/09 14:39:17 vg 1.17.8.2: RESYNC MERGED 1.17 1.18 Everything below this line will be added to the revision comment. 2004/06/30 12:31:08 waratah 1.17.8.1: #i30874# Add initial values to potentially unitialised values
Diffstat (limited to 'jvmfwk/source/fwkutil.cxx')
-rw-r--r--jvmfwk/source/fwkutil.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/jvmfwk/source/fwkutil.cxx b/jvmfwk/source/fwkutil.cxx
index d12da34e9da3..ded3a6fd95a8 100644
--- a/jvmfwk/source/fwkutil.cxx
+++ b/jvmfwk/source/fwkutil.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fwkutil.cxx,v $
*
- * $Revision: 1.18 $
+ * $Revision: 1.19 $
*
- * last change: $Author: hr $ $Date: 2004-07-23 11:55:05 $
+ * last change: $Author: rt $ $Date: 2004-09-08 16:03:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -724,7 +724,8 @@ rtl::ByteSequence decodeBase16(const rtl::ByteSequence& data)
{
sal_Int8 curChar = *pData;
//find the index of the first 4bits
- char nibble;
+ // TODO What happens if text is not valid Hex characters?
+ char nibble = 0;
for (int ii = 0; ii < 16; ii++)
{
if (curChar == decodingTable[ii])