You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
while the first method calls the second with the second and third params set to null the second method creates a new ComException instance by passing a message got from Kernel32 and two null received as parameters to the constructor of ComException class.
as the ComException class constructor has a call to super with a puArgErr.getValue as param we have a null pointer exception here because puArgErr from the code above is set to null
The text was updated successfully, but these errors were encountered:
JohnRobPeter
changed the title
Null pointer exception occures when a ComException is created
Null pointer exception occurs when a ComException is created
Mar 18, 2015
Motivation:
Since PR java-native-access#406 the Android build was not working anymore
Modifications:
Re-added the ldflags to the Android profile of the native library
Result:
The Android library successfully builds again
This reverts commit 122d099.
COMUtils.java
while the first method calls the second with the second and third params set to null the second method creates a new ComException instance by passing a message got from Kernel32 and two null received as parameters to the constructor of ComException class.
COMException.java
as the ComException class constructor has a call to super with a puArgErr.getValue as param we have a null pointer exception here because puArgErr from the code above is set to null
The text was updated successfully, but these errors were encountered: