gallium/xlib: silence unitialized var warning
authorBrian Paul <brianp@vmware.com>
Thu, 3 Sep 2009 21:44:22 +0000 (15:44 -0600)
committerBrian Paul <brianp@vmware.com>
Thu, 3 Sep 2009 21:44:22 +0000 (15:44 -0600)
src/gallium/state_trackers/glx/xlib/xm_api.c

index a3d16516531a76e4d16849c9e5d29eba8ea030bf..45ad694e234f8a5f37dc491b3714478a3f59907a 100644 (file)
@@ -743,7 +743,7 @@ XMesaContext XMesaCreateContext( XMesaVisual v, XMesaContext share_list )
 {
    static GLboolean firstTime = GL_TRUE;
    struct pipe_screen *screen;
-   struct pipe_context *pipe;
+   struct pipe_context *pipe = NULL;
    XMesaContext c;
    GLcontext *mesaCtx;
    uint pf;