From 1adf4dbec3264d400267c3701cbccc62fe08eb99 Mon Sep 17 00:00:00 2001 From: Ivo Hinkelmann Date: Tue, 1 Aug 2006 10:48:28 +0000 Subject: [PATCH] INTEGRATION: CWS pj55 (1.8.24); FILE MERGED 2006/07/15 10:03:25 pjanik 1.8.24.1: #i67342#: Prevent warning ("has not yet been assigned a value"). --- bridges/source/jni_uno/jni_helper.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bridges/source/jni_uno/jni_helper.h b/bridges/source/jni_uno/jni_helper.h index 6670ccefef42..86f13e060613 100644 --- a/bridges/source/jni_uno/jni_helper.h +++ b/bridges/source/jni_uno/jni_helper.h @@ -4,9 +4,9 @@ * * $RCSfile: jni_helper.h,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: hr $ $Date: 2006-04-19 13:43:46 $ + * last change: $Author: ihi $ $Date: 2006-08-01 11:48:28 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -96,7 +96,7 @@ inline jclass find_class( JNI_context const & jni, char const * class_name, bool inException = false ) { // find_class may be called before the JNI_info is set: - jclass c; + jclass c=0; jmethodID m; JNI_info const * info = jni.get_info(); if (info == 0) {