From b1abf1ea8e4cad0f574b059149cb9761f12c4053 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 24 Nov 2005 03:48:19 +0000 Subject: change error test in _eglParseConfigAttribs() --- src/egl/main/eglconfig.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/egl/main/eglconfig.c') diff --git a/src/egl/main/eglconfig.c b/src/egl/main/eglconfig.c index ab141dc128..eba608b0ba 100644 --- a/src/egl/main/eglconfig.c +++ b/src/egl/main/eglconfig.c @@ -153,8 +153,11 @@ _eglParseConfigAttribs(_EGLConfig *config, const EGLint *attrib_list) } for (i = 0; attrib_list && attrib_list[i] != EGL_NONE; i++) { - EGLint k = attrib_list[i] - FIRST_ATTRIB; - if (k >= 0 && k < MAX_ATTRIBS) { + if (attrib_list[i] >= EGL_BUFFER_SIZE && + attrib_list[i] <= EGL_MAX_SWAP_INTERVAL) { + EGLint k = attrib_list[i] - FIRST_ATTRIB; + assert(k >= 0); + assert(k < MAX_ATTRIBS); config->Attrib[k] = attrib_list[++i]; } else { -- cgit v1.2.3