usb: Fixed the null pointer issue
Bug: 200323450 Test: Function work with reboot connect to PC and HU Signed-off-by: Ricky Niu <rickyniu@google.com> Change-Id: I9bdfcda195c30d71d9d39e1170bbf66a7021c39b
This commit is contained in:
@@ -237,7 +237,12 @@ public class UsbDeviceManager implements ActivityTaskManagerInternal.ScreenObser
|
|||||||
@Override
|
@Override
|
||||||
public void onUEvent(UEventObserver.UEvent event) {
|
public void onUEvent(UEventObserver.UEvent event) {
|
||||||
if (DEBUG) Slog.v(TAG, "USB UEVENT: " + event.toString());
|
if (DEBUG) Slog.v(TAG, "USB UEVENT: " + event.toString());
|
||||||
sEventLogger.log(new UsbDeviceLogger.StringEvent("USB UEVENT: " + event.toString()));
|
if (sEventLogger != null) {
|
||||||
|
sEventLogger.log(new UsbDeviceLogger.StringEvent("USB UEVENT: "
|
||||||
|
+ event.toString()));
|
||||||
|
} else {
|
||||||
|
if (DEBUG) Slog.d(TAG, "sEventLogger == null");
|
||||||
|
}
|
||||||
|
|
||||||
String state = event.get("USB_STATE");
|
String state = event.get("USB_STATE");
|
||||||
String accessory = event.get("ACCESSORY");
|
String accessory = event.get("ACCESSORY");
|
||||||
|
|||||||
Reference in New Issue
Block a user