Module: Mesa Branch: master Commit: c8f407bcec7619eb2030ea9fe52501ad33075699 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=c8f407bcec7619eb2030ea9fe52501ad33075699
Author: Kristian Høgsberg <[email protected]> Date: Tue May 18 14:02:57 2010 -0400 dri2_glx: Terminate loader extension list outside #ifdef --- src/glx/dri2_glx.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/glx/dri2_glx.c b/src/glx/dri2_glx.c index eafb87c..17352e9 100644 --- a/src/glx/dri2_glx.c +++ b/src/glx/dri2_glx.c @@ -739,8 +739,8 @@ dri2CreateDisplay(Display * dpy) #ifdef __DRI_USE_INVALIDATE if (pdp->invalidateAvailable) pdp->loader_extensions[i++] = &dri2UseInvalidate.base; - pdp->loader_extensions[i++] = NULL; #endif + pdp->loader_extensions[i++] = NULL; return &pdp->base; } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
