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

Vinson Lee vlee at kemper.freedesktop.org
Wed Oct 27 16:26:51 UTC 2010


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

Author: Vinson Lee <vlee at vmware.com>
Date:   Wed Oct 27 09:26:27 2010 -0700

r600g: Silence uninitialized variable warnings.

---

 src/gallium/drivers/r600/r600_asm.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c
index c226284..8a7f3ce 100644
--- a/src/gallium/drivers/r600/r600_asm.c
+++ b/src/gallium/drivers/r600/r600_asm.c
@@ -879,15 +879,15 @@ int r600_bc_build(struct r600_bc *bc)
 
 void r600_bc_clear(struct r600_bc *bc)
 {
-	struct r600_bc_cf *cf, *next_cf;
+	struct r600_bc_cf *cf = NULL, *next_cf;
 
 	free(bc->bytecode);
 	bc->bytecode = NULL;
 
 	LIST_FOR_EACH_ENTRY_SAFE(cf, next_cf, &bc->cf, list) {
-		struct r600_bc_alu *alu, *next_alu;
-		struct r600_bc_tex *tex, *next_tex;
-		struct r600_bc_tex *vtx, *next_vtx;
+		struct r600_bc_alu *alu = NULL, *next_alu;
+		struct r600_bc_tex *tex = NULL, *next_tex;
+		struct r600_bc_tex *vtx = NULL, *next_vtx;
 
 		LIST_FOR_EACH_ENTRY_SAFE(alu, next_alu, &cf->alu, list) {
 			free(alu);




More information about the mesa-commit mailing list