diff options
author | Jon Smirl <[email protected]> | 2005-05-17 03:48:38 +0000 |
---|---|---|
committer | Jon Smirl <[email protected]> | 2005-05-17 03:48:38 +0000 |
commit | 2ec2e94e2e22dff7b2912fb87c6ffe12dcb301f7 (patch) | |
tree | 87b468889c16bbe665519840ee4f538f400c6cea /src/mesa/drivers/dri/fb | |
parent | 40c1c723fb77b0d9c1a1958498597403d2238ee7 (diff) |
Check error return from _eglInitPbufferSurface() correctly
Diffstat (limited to 'src/mesa/drivers/dri/fb')
-rw-r--r-- | src/mesa/drivers/dri/fb/fb_egl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/fb/fb_egl.c b/src/mesa/drivers/dri/fb/fb_egl.c index 62e26021c5a..79640bbc618 100644 --- a/src/mesa/drivers/dri/fb/fb_egl.c +++ b/src/mesa/drivers/dri/fb/fb_egl.c @@ -529,7 +529,7 @@ fbCreatePbufferSurface(_EGLDriver *drv, EGLDisplay dpy, EGLConfig config, const return EGL_NO_SURFACE; } - if (_eglInitPbufferSurface(&surf->Base, drv, dpy, config, attrib_list)) { + if (_eglInitPbufferSurface(&surf->Base, drv, dpy, config, attrib_list) == EGL_NO_SURFACE) { free(surf); return EGL_NO_SURFACE; } |