Mesa (master): r600g: Silence uninitialized variable warning.

Vinson Lee vlee at kemper.freedesktop.org
Fri Oct 8 21:14:36 UTC 2010


Module: Mesa
Branch: master
Commit: 36b65a373adc88650e4a2ad8d99642a569b7662a
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=36b65a373adc88650e4a2ad8d99642a569b7662a

Author: Vinson Lee <vlee at vmware.com>
Date:   Fri Oct  8 14:14:16 2010 -0700

r600g: Silence uninitialized variable warning.

---

 src/gallium/winsys/r600/drm/r600_hw_context.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/gallium/winsys/r600/drm/r600_hw_context.c b/src/gallium/winsys/r600/drm/r600_hw_context.c
index fa00537..2521ff9 100644
--- a/src/gallium/winsys/r600/drm/r600_hw_context.c
+++ b/src/gallium/winsys/r600/drm/r600_hw_context.c
@@ -968,7 +968,8 @@ void r600_context_draw(struct r600_context *ctx, const struct r600_draw *draw)
 	struct r600_bo *cb[8];
 	struct r600_bo *db;
 	unsigned ndwords = 9;
-	struct r600_block *dirty_block, *next_block;
+	struct r600_block *dirty_block = NULL;
+	struct r600_block *next_block;
 
 	if (draw->indices) {
 		ndwords = 13;




More information about the mesa-commit mailing list