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

Commit 3416f9ac authored by Yin-Chia Yeh's avatar Yin-Chia Yeh Committed by Android (Google) Code Review
Browse files

Merge "Camera2: Add null check to createStream" into lmp-preview-dev

parents 8756d415 89f14dac
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -310,6 +310,10 @@ status_t CameraDeviceClient::createStream(int width, int height, int format,

    Mutex::Autolock icl(mBinderSerializationLock);

    if (bufferProducer == NULL) {
        ALOGE("%s: bufferProducer must not be null", __FUNCTION__);
        return BAD_VALUE;
    }
    if (!mDevice.get()) return DEAD_OBJECT;

    // Don't create multiple streams for the same target surface