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 55e82ab60f
commit ab17d3a113

View File

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