diff options
author | Ian Romanick <[email protected]> | 2004-03-26 02:02:48 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2004-03-26 02:02:48 +0000 |
commit | 3623579e43b4c3a8d2eb7edb6efaa6f178279ec9 (patch) | |
tree | 805742389c1e00372ff151805bbd8a6d87045893 /src/mesa/drivers/dri/i810/i810screen.c | |
parent | 301e55c6cd27e50a9186f096a974321b6df2c511 (diff) |
Make sure drivers don't dereference a NULL pointer if
__driUtilCreateNewScreen returns NULL.
Diffstat (limited to 'src/mesa/drivers/dri/i810/i810screen.c')
-rw-r--r-- | src/mesa/drivers/dri/i810/i810screen.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mesa/drivers/dri/i810/i810screen.c b/src/mesa/drivers/dri/i810/i810screen.c index 232f62d41d8..a095b28add1 100644 --- a/src/mesa/drivers/dri/i810/i810screen.c +++ b/src/mesa/drivers/dri/i810/i810screen.c @@ -439,14 +439,14 @@ void * __driCreateNewScreen( Display *dpy, int scrn, __DRIscreen *psc, ddx_version, dri_version, drm_version, frame_buffer, pSAREA, fd, internal_api_version, &i810API); - - - create_context_modes = - (PFNGLXCREATECONTEXTMODES) glXGetProcAddress( (const GLubyte *) "__glXCreateContextModes" ); - if ( create_context_modes != NULL ) { - *driver_modes = i810FillInModes( 16, - 16, 0, - 1); + if ( psp != NULL ) { + create_context_modes = (PFNGLXCREATECONTEXTMODES) + glXGetProcAddress( (const GLubyte *) "__glXCreateContextModes" ); + if ( create_context_modes != NULL ) { + *driver_modes = i810FillInModes( 16, + 16, 0, + 1); + } } return (void *) psp; |