Commit 1efccea3 by Tom Tromey Committed by Tom Tromey

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
parent 92204597
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>
* java/io/natFileDescriptorWin32.cc (setLength): New method.
......
......@@ -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);
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment