Module: Mesa Branch: master Commit: 4f131356cc5d2df4316c2146d3d9447d1b4dcd48 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=4f131356cc5d2df4316c2146d3d9447d1b4dcd48
Author: Vinson Lee <[email protected]> Date: Sun Feb 14 00:45:23 2010 -0800 r600: Silence uninitialized variable warning. --- src/mesa/drivers/dri/r600/r700_assembler.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mesa/drivers/dri/r600/r700_assembler.c b/src/mesa/drivers/dri/r600/r700_assembler.c index 89adb77..f67f882 100644 --- a/src/mesa/drivers/dri/r600/r700_assembler.c +++ b/src/mesa/drivers/dri/r600/r700_assembler.c @@ -2260,7 +2260,7 @@ GLboolean check_vector(r700_AssemblerBase* pAsm, GLboolean assemble_alu_instruction(r700_AssemblerBase *pAsm) { - R700ALUInstruction * alu_instruction_ptr; + R700ALUInstruction * alu_instruction_ptr = NULL; R700ALUInstructionHalfLiteral * alu_instruction_ptr_hl; R700ALUInstructionFullLiteral * alu_instruction_ptr_fl; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
