summaryrefslogtreecommitdiff
path: root/src/egl/main/eglmode.c
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-09-10 00:02:47 +0800
committerChia-I Wu <olv@lunarg.com>2010-09-10 00:18:14 +0800
commit08a482e7a9d13db5d4e6fd974942f6699d7d49dc (patch)
tree1894296cea84822900f5fe1a623ed5cd9586655e /src/egl/main/eglmode.c
parent3ec296390c250dbcdc2690e78da9a51ec57dabf5 (diff)
egl: Display may be NULL in _eglLookup*.
This fixes several NULL dereferences.
Diffstat (limited to 'src/egl/main/eglmode.c')
-rw-r--r--src/egl/main/eglmode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/main/eglmode.c b/src/egl/main/eglmode.c
index 37594cdb42..ed107d5d7a 100644
--- a/src/egl/main/eglmode.c
+++ b/src/egl/main/eglmode.c
@@ -25,7 +25,7 @@ _eglLookupMode(EGLModeMESA mode, _EGLDisplay *disp)
{
EGLint scrnum;
- if (!disp->Screens)
+ if (!disp || !disp->Screens)
return NULL;
/* loop over all screens on the display */