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

Commit 7723773d authored by Mathias Agopian's avatar Mathias Agopian Committed by Android (Google) Code Review
Browse files

Merge "don't report an error when disconnecting from an abandoned surfacetexture" into ics-mr1

parents 75cf5a74 8b8a0041
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -646,8 +646,9 @@ status_t SurfaceTexture::disconnect(int api) {
    Mutex::Autolock lock(mMutex);

    if (mAbandoned) {
        ST_LOGE("disconnect: SurfaceTexture has been abandoned!");
        return NO_INIT;
        // it is not really an error to disconnect after the surface
        // has been abandoned, it should just be a no-op.
        return NO_ERROR;
    }

    int err = NO_ERROR;