Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit faf63dbf authored by Paul Colta's avatar Paul Colta
Browse files

HDMI: Catch NullPointerException which could be triggered during burn-in test

Bug: 434082502
Flag: EXEMPT bugfix
Test: atest com.android.server.hdmi
Change-Id: Ide7588004eaac9ca1d66fd9e2b934f56c7d93da3
parent 35b7c339
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -995,7 +995,7 @@ final class HdmiCecController {
            try {
                // Create an AIDL callback that can callback onCecMessage
                mHdmiCec.setCallback(new HdmiCecCallbackAidl(callback));
            } catch (RemoteException e) {
            } catch (RemoteException | NullPointerException e) {
                HdmiLogger.error("Couldn't initialise tv.cec callback : ", e);
            }
            try {