Merge
authorvaleriep
Mon, 31 Mar 2008 16:50:16 -0700
changeset 298 bae6558c1edd
parent 297 bec12c857972 (current diff)
parent 295 3711f2ad2f6d (diff)
child 299 413c5467beb7
Merge
--- a/jdk/src/solaris/native/sun/security/pkcs11/wrapper/p11_md.c	Mon Mar 31 16:16:12 2008 -0700
+++ b/jdk/src/solaris/native/sun/security/pkcs11/wrapper/p11_md.c	Mon Mar 31 16:50:16 2008 -0700
@@ -123,7 +123,10 @@
         C_GetFunctionList = (CK_C_GetFunctionList) dlsym(hModule, getFunctionListStr);
         (*env)->ReleaseStringUTFChars(env, jGetFunctionList, getFunctionListStr);
     }
-    if ((C_GetFunctionList == NULL) || ((systemErrorMessage = dlerror()) != NULL)){
+    if (C_GetFunctionList == NULL) {
+        throwIOException(env, "ERROR: C_GetFunctionList == NULL");
+        return;
+    } else if ( (systemErrorMessage = dlerror()) != NULL ){
         throwIOException(env, systemErrorMessage);
         return;
     }