summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 13:00:50 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 13:00:50 +0000
commita1cf31c53140f29cb14a4cf7fa45fb6af3aa3f14 (patch)
treefb3234d6f5262bccf035248da6f7734cee4bf1d0 /cppu
parent04fc858178795bd3770f569fb0ccbb79684c5a67 (diff)
INTEGRATION: CWS ooo20031216 (1.14.2); FILE MERGED
2003/12/23 10:26:11 waratah 1.14.2.1: #i1858# initialise an unitialised variable
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/uno/prim.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cppu/source/uno/prim.hxx b/cppu/source/uno/prim.hxx
index 0f35bc059bd9..b6705e02f94c 100644
--- a/cppu/source/uno/prim.hxx
+++ b/cppu/source/uno/prim.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: prim.hxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: rt $ $Date: 2003-12-01 16:03:16 $
+ * last change: $Author: hr $ $Date: 2004-02-04 14:00:50 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -218,7 +218,7 @@ inline typelib_TypeDescriptionReference * _unionGetSetType(
void * pUnion, typelib_TypeDescription * pTD )
SAL_THROW( () )
{
- typelib_TypeDescriptionReference * pRet;
+ typelib_TypeDescriptionReference * pRet = 0;
sal_Int32 nPos;
sal_Int64 * pDiscr = ((typelib_UnionTypeDescription *)pTD)->pDiscriminants;