summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-04-07 07:09:52 -0600
committerBrian Paul <brianp@vmware.com>2010-04-07 07:09:57 -0600
commit78fd65fd2c9b537b88bf35454b98323029ee1bb3 (patch)
tree1a0d24ac42d42dbf882934111894490e03a97221
parentda17623c33cddf96c0f63b32e25ebc33b04a2b14 (diff)
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).
-rw-r--r--src/gallium/auxiliary/draw/draw_pt.c2
1 files changed, 2 insertions, 0 deletions
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)