libagl: Fix buffer read overrun in eglCreatePbufferSurface
The code was assuming that EGL_NONE==0, which isn't true. Bug: 23403170 Change-Id: Ic1eccdef086b4d610bd78dbb6b2ae883c91dc322
This commit is contained in:
parent
dcadad708a
commit
770ff1cf70
@ -1373,7 +1373,7 @@ static EGLSurface createPbufferSurface(EGLDisplay dpy, EGLConfig config,
|
||||
|
||||
int32_t w = 0;
|
||||
int32_t h = 0;
|
||||
while (attrib_list[0]) {
|
||||
while (attrib_list[0] != EGL_NONE) {
|
||||
if (attrib_list[0] == EGL_WIDTH) w = attrib_list[1];
|
||||
if (attrib_list[0] == EGL_HEIGHT) h = attrib_list[1];
|
||||
attrib_list+=2;
|
||||
|
Loading…
Reference in New Issue
Block a user