diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-02-04 10:56:28 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-02-04 10:56:28 +0000 |
commit | c503aecad17ca6e822e3fb610896fce25a5aaa90 (patch) | |
tree | 4db8523a97e039ba9bd735b73ceee16b87bc07f9 /unotools/source/ucbhelper/ucblockbytes.cxx | |
parent | 308f454593249805923da092698427cb107ada9d (diff) |
INTEGRATION: CWS ooo20031216 (1.46.4); FILE MERGED
2003/12/24 11:29:57 waratah 1.46.4.1: #i1858# correct potential unitialised values
Diffstat (limited to 'unotools/source/ucbhelper/ucblockbytes.cxx')
-rw-r--r-- | unotools/source/ucbhelper/ucblockbytes.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unotools/source/ucbhelper/ucblockbytes.cxx b/unotools/source/ucbhelper/ucblockbytes.cxx index 9f5461469352..d148665f4c4a 100644 --- a/unotools/source/ucbhelper/ucblockbytes.cxx +++ b/unotools/source/ucbhelper/ucblockbytes.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ucblockbytes.cxx,v $ * - * $Revision: 1.46 $ + * $Revision: 1.47 $ * - * last change: $Author: rt $ $Date: 2003-11-25 10:47:46 $ + * last change: $Author: hr $ $Date: 2004-02-04 11:56:28 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -756,7 +756,7 @@ Moderator::Moderator( // now exchange the whole data sink stuff // with a thread safe version - Reference<XInterface> *pxSink; + Reference<XInterface> *pxSink = NULL; PostCommandArgument2 aPostArg; OpenCommandArgument2 aOpenArg; @@ -956,7 +956,7 @@ void SAL_CALL Moderator::run() { ResultType aResultType; Any aResult; - sal_Int32 nIOErrorCode; + sal_Int32 nIOErrorCode = 0; try { |