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:
Daniel 2 Olofsson
2013-01-17 12:05:34 +01:00
committed by Jeff Sharkey
parent b59b5a679a
commit 878b45577a

View File

@@ -41,7 +41,7 @@ public class NativeDaemonConnectorException extends Exception {
}
public int getCode() {
return mEvent.getCode();
return mEvent != null ? mEvent.getCode() : -1;
}
public String getCmd() {