diff options
author | Chia-I Wu <[email protected]> | 2010-09-10 00:02:47 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-09-10 00:18:14 +0800 |
commit | 08a482e7a9d13db5d4e6fd974942f6699d7d49dc (patch) | |
tree | 1894296cea84822900f5fe1a623ed5cd9586655e /src/egl/main/eglmode.c | |
parent | 3ec296390c250dbcdc2690e78da9a51ec57dabf5 (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/main/eglmode.c b/src/egl/main/eglmode.c index 37594cdb42d..ed107d5d7a7 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 */ |