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

Commit f83c2720 authored by Jamie Gennis's avatar Jamie Gennis Committed by Android Git Automerger
Browse files

am 16cfa2e3: Merge "SurfaceTexture: fix an out of bounds array write" into jb-mr1-dev

* commit '16cfa2e3':
  SurfaceTexture: fix an out of bounds array write
parents 849df8cd 16cfa2e3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -200,7 +200,7 @@ status_t SurfaceTexture::releaseBufferLocked(int buf, EGLDisplay display,
    status_t err = ConsumerBase::releaseBufferLocked(buf, mEglDisplay,
           eglFence);

    mEglSlots[mCurrentTexture].mEglFence = EGL_NO_SYNC_KHR;
    mEglSlots[buf].mEglFence = EGL_NO_SYNC_KHR;

    return err;
}