From 78fd65fd2c9b537b88bf35454b98323029ee1bb3 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 7 Apr 2010 07:09:52 -0600 Subject: draw: init draw->pt.middle.general = NULL just to be safe This field should be null from the initial calloc() of the draw context, but let's be safe (and improve understanding of the code). --- src/gallium/auxiliary/draw/draw_pt.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/gallium') diff --git a/src/gallium/auxiliary/draw/draw_pt.c b/src/gallium/auxiliary/draw/draw_pt.c index b7a998248d..a60a3b2a2b 100644 --- a/src/gallium/auxiliary/draw/draw_pt.c +++ b/src/gallium/auxiliary/draw/draw_pt.c @@ -142,6 +142,8 @@ boolean draw_pt_init( struct draw_context *draw ) #if DRAW_LLVM draw->pt.middle.general = draw_pt_fetch_pipeline_or_emit_llvm( draw ); +#else + draw->pt.middle.general = NULL; #endif if (!draw->pt.middle.general) -- cgit v1.2.3