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").
This commit is contained in:
Ivo Hinkelmann 2006-08-01 10:48:28 +00:00
parent ace4a7edb4
commit 1adf4dbec3

View file

@ -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) {