summaryrefslogtreecommitdiff
path: root/pyuno/source/module/pyuno_runtime.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-09-25 12:22:58 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-09-25 12:22:58 +0000
commit0ef9a3f9bdff393f117833583e39ccdd14e6f36c (patch)
tree2bb2626afa92e3cc681aa2cde7b4ec246a66da7e /pyuno/source/module/pyuno_runtime.cxx
parentd1f238f4c5a9b03de4956d75f9c58a5ae322b8eb (diff)
INTEGRATION: CWS obo05 (1.13.2); FILE MERGED
2006/09/19 09:49:09 obo 1.13.2.1: #i53611#,#i69591# uninitialized local variable
Diffstat (limited to 'pyuno/source/module/pyuno_runtime.cxx')
-rw-r--r--pyuno/source/module/pyuno_runtime.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyuno/source/module/pyuno_runtime.cxx b/pyuno/source/module/pyuno_runtime.cxx
index 95e450807d21..f8d83451b228 100644
--- a/pyuno/source/module/pyuno_runtime.cxx
+++ b/pyuno/source/module/pyuno_runtime.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: pyuno_runtime.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: ihi $ $Date: 2006-08-29 11:04:27 $
+ * last change: $Author: vg $ $Date: 2006-09-25 13:22:58 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -575,7 +575,7 @@ PyRef Runtime::any2PyObject (const Any &a ) const
Reference< XSingleServiceFactory > ssf = getImpl()->cargo->xInvocation;
tc->convertTo (a, ::getCppuType (&s)) >>= s;
PyRef tuple( PyTuple_New (s.getLength()), SAL_NO_ACQUIRE);
- int i;
+ int i=0;
OUString errMsg;
try
{