Merge "Fix error trap in SurfaceTexture Client"

This commit is contained in:
Jean-Baptiste Queru 2012-08-20 08:55:04 -07:00 committed by android code review
commit 349149b52a

View File

@ -757,6 +757,9 @@ status_t SurfaceTextureClient::lock(
ALOGW_IF(res, "failed locking buffer (handle = %p)",
backBuffer->handle);
if (res != 0) {
err = INVALID_OPERATION;
} else {
mLockedBuffer = backBuffer;
outBuffer->width = backBuffer->width;
outBuffer->height = backBuffer->height;
@ -765,6 +768,7 @@ status_t SurfaceTextureClient::lock(
outBuffer->bits = vaddr;
}
}
}
return err;
}