natResourceBundle.cc: Include ArrayIndexOutOfBoundsException.h.
2002-12-19 Andrew Haley <aph@redhat.com> * java/util/natResourceBundle.cc: Include ArrayIndexOutOfBoundsException.h. (getCallingClassLoader): Don't put upper bound on stack search. Catch ArrayIndexOutOfBoundsException. From-SVN: r60348
This commit is contained in:
parent
4dfde20672
commit
51d6eed48e
@ -1,3 +1,10 @@
|
||||
2002-12-19 Andrew Haley <aph@redhat.com>
|
||||
|
||||
* java/util/natResourceBundle.cc: Include
|
||||
ArrayIndexOutOfBoundsException.h.
|
||||
(getCallingClassLoader): Don't put upper bound on stack search.
|
||||
Catch ArrayIndexOutOfBoundsException.
|
||||
|
||||
2002-12-19 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* libtool-version: Increased `current'.
|
||||
|
@ -16,17 +16,24 @@ details. */
|
||||
#include <java/lang/SecurityManager.h>
|
||||
#include <java/lang/ClassLoader.h>
|
||||
#include <java/lang/Class.h>
|
||||
#include <java/lang/ArrayIndexOutOfBoundsException.h>
|
||||
#include <gnu/gcj/runtime/StackTrace.h>
|
||||
|
||||
java::lang::ClassLoader *
|
||||
java::util::ResourceBundle::getCallingClassLoader ()
|
||||
{
|
||||
gnu::gcj::runtime::StackTrace *t = new gnu::gcj::runtime::StackTrace(6);
|
||||
for (int i = 3; i < 6; ++i)
|
||||
try
|
||||
{
|
||||
for (int i = 3; ; ++i)
|
||||
{
|
||||
jclass klass = t->classAt(i);
|
||||
if (klass != NULL)
|
||||
return klass->getClassLoaderInternal();
|
||||
}
|
||||
}
|
||||
catch (::java::lang::ArrayIndexOutOfBoundsException *e)
|
||||
{
|
||||
jclass klass = t->classAt(i);
|
||||
if (klass != NULL)
|
||||
return klass->getClassLoaderInternal();
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user