Fix NativeDaemonConnectorException issue accessing null object
When function getCode is called on NativeDaemonConnectorException object it may throw exception due to mEvent object not being set for certain constructors. Fix is to return a default error code as expected if mEvent object has not been set rather than trying to call mEvent.getCode(). Change-Id: Ia8aa23deb8871bb4df73096cc489b685a1765f16
This commit is contained in:
committed by
Jeff Sharkey
parent
55e82ab60f
commit
ab17d3a113
@@ -41,7 +41,7 @@ public class NativeDaemonConnectorException extends Exception {
|
||||
}
|
||||
|
||||
public int getCode() {
|
||||
return mEvent.getCode();
|
||||
return mEvent != null ? mEvent.getCode() : -1;
|
||||
}
|
||||
|
||||
public String getCmd() {
|
||||
|
||||
Reference in New Issue
Block a user