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

Commit cd13abbc authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "SurfaceFlinger: do not assert if setActiveConfigWithConstraints fails"...

Merge "SurfaceFlinger: do not assert if setActiveConfigWithConstraints fails" into rvc-dev am: abb891a7 am: 6e921da2 am: 5fea2a31

Change-Id: I84da9ce435f894fbff3e3175a68eec5157e1b205
parents 62f92d32 5fea2a31
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1074,7 +1074,9 @@ bool SurfaceFlinger::performSetActiveConfig() {
                                                           mUpcomingActiveConfig.configId.value(),
                                                           constraints, &outTimeline);
    if (status != NO_ERROR) {
        LOG_ALWAYS_FATAL("setActiveConfigWithConstraints failed: %d", status);
        // setActiveConfigWithConstraints may fail if a hotplug event is just about
        // to be sent. We just log the error in this case.
        ALOGW("setActiveConfigWithConstraints failed: %d", status);
        return false;
    }