From: Brian Paul Date: Sat, 29 May 2004 14:41:52 +0000 (+0000) Subject: check for null pointer in Fake_glXCreateGLXPbufferSGIGIX() (bug 961376) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=11b3028e7ba2fc3b985ab84d7227c290608f83f6;p=mesa.git check for null pointer in Fake_glXCreateGLXPbufferSGIGIX() (bug 961376) --- diff --git a/src/mesa/drivers/x11/fakeglx.c b/src/mesa/drivers/x11/fakeglx.c index 47882114cfc..3a8c7929004 100644 --- a/src/mesa/drivers/x11/fakeglx.c +++ b/src/mesa/drivers/x11/fakeglx.c @@ -1,6 +1,6 @@ /* * Mesa 3-D graphics library - * Version: 6.0.1 + * Version: 6.1 * * Copyright (C) 1999-2004 Brian Paul All Rights Reserved. * @@ -2397,7 +2397,7 @@ Fake_glXCreateGLXPbufferSGIX(Display *dpy, GLXFBConfigSGIX config, (void) dpy; - for (attrib = attribList; *attrib; attrib++) { + for (attrib = attribList; attrib && *attrib; attrib++) { switch (*attrib) { case GLX_PRESERVED_CONTENTS_SGIX: attrib++;