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

Commit e8c2f61d authored by Varun Shah's avatar Varun Shah
Browse files

Fix NPE in SyncManager.

Bug: 294941361
Change-Id: I84fef0036630fa33973eb6729855450efd2ab2bc
Test: atest CtsSyncManagerTest
parent 8d2b2229
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3046,7 +3046,7 @@ public class SyncManager {

    public static void sendMessage(Message message) {
        final SyncManager instance = getInstance();
        if (instance != null) {
        if (instance != null && instance.mSyncHandler != null) {
            instance.mSyncHandler.sendMessage(message);
        }
    }