-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

(Not sure if this has been caught yet, but it is still in the CVS sources)

The loadProviders method of java.security.Security has a rather silly
bug in it:

- --- LINE 92 ---
~ while ((name = secprops.getProperty("security.provider." + i++)) !=
~        null)
~   {
~     Exception exception = null;

~     try
~       {
	 providers.addElement(Class.forName(name).newInstance());
	 i++;

(etc.)
- -----

The value `i' is incremented twice in the `while' loop. Remove one of
them for the correct behavior.

Cheers,

- --
Casey Marshall < [EMAIL PROTECTED] > http://metastatic.org/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQE9+WlGgAuWMgRGsWsRArCEAJ4iiNp8Id6uGYC/5P0KDakOQ9Y8jwCfYHCn
PgMtjnykxhRMArRvfG84AHc=
=vtaa
-----END PGP SIGNATURE-----



_______________________________________________
Classpath mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/classpath

Reply via email to