warning-uninitialized-variables-tools-2.diff: avoid warning (i#58984)

avoid warnings about that a variable is used unitialized; the code was correct;
though, the warning was considered as an error in openSUSE build service;
the change does not cause any harm
This commit is contained in:
Petr Mladek
2011-03-30 19:45:16 +02:00
parent 5126356465
commit c93174a788

View File

@@ -3064,7 +3064,7 @@ ByteString INetMIME::decodeUTF8(const ByteString & rText,
ByteString sDecoded;
while (p != pEnd)
{
sal_uInt32 nCharacter;
sal_uInt32 nCharacter = 0;
if (translateUTF8Char(p, pEnd, eEncoding, nCharacter))
sDecoded += sal_Char(nCharacter);
else
@@ -3497,7 +3497,7 @@ UniString INetMIME::decodeHeaderFieldBody(HeaderFieldType eType,
{
const sal_Char * pUTF8Begin = p - 1;
const sal_Char * pUTF8End = pUTF8Begin;
sal_uInt32 nCharacter;
sal_uInt32 nCharacter = 0;
if (translateUTF8Char(pUTF8End, pEnd, RTL_TEXTENCODING_UCS4,
nCharacter))
{