Runtime.java (loadLibrary): Pass `true' as search argument to _load.

* java/lang/Runtime.java (loadLibrary): Pass `true' as search
	argument to _load.

From-SVN: r55727
This commit is contained in:
Tom Tromey 2002-07-24 23:17:39 +00:00 committed by Tom Tromey
parent 922045978d
commit 1efccea3b1
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-07-24 Tom Tromey <tromey@redhat.com>
* java/lang/Runtime.java (loadLibrary): Pass `true' as search
argument to _load.
2002-07-24 Tom Tromey <tromey@redhat.com>
Tony Kimball <alk@pobox.com>

View File

@ -652,7 +652,7 @@ public class Runtime
SecurityManager sm = securityManager; // Be thread-safe!
if (sm != null)
sm.checkLink(libname);
_load(libname, false);
_load(libname, true);
}
/**