Module: Mesa Branch: master Commit: ec76232785f13042cf7ae4298a1e997e781d27a0 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ec76232785f13042cf7ae4298a1e997e781d27a0
Author: Bas Nieuwenhuizen <[email protected]> Date: Thu Sep 19 16:50:08 2019 +0200 glx: Remove redundant null check. Gitlab: https://gitlab.freedesktop.org/mesa/mesa/issues/64 Reviewed-by: Adam Jackson <[email protected]> --- src/glx/dri2_glx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/glx/dri2_glx.c b/src/glx/dri2_glx.c index d6a543c8da0..bed25bb38d6 100644 --- a/src/glx/dri2_glx.c +++ b/src/glx/dri2_glx.c @@ -1018,7 +1018,7 @@ dri2InvalidateBuffers(Display *dpy, XID drawable) psc = (struct dri2_screen *) pdraw->psc; - if (pdraw && psc->f && psc->f->base.version >= 3 && psc->f->invalidate) + if (psc->f && psc->f->base.version >= 3 && psc->f->invalidate) psc->f->invalidate(pdp->driDrawable); } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
