Merge
This commit is contained in:
commit
58ca4c8b87
@ -123,7 +123,10 @@ JNIEXPORT void JNICALL Java_sun_security_pkcs11_wrapper_PKCS11_connect
|
||||
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user