From: Keith Whitwell Date: Tue, 10 May 2005 09:56:02 +0000 (+0000) Subject: Fix texenv segfault. Reported by Ben Skeggs. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9ca8815d3ba56ad718ba1c48c73aae3cdc0b8db0;p=mesa.git Fix texenv segfault. Reported by Ben Skeggs. --- diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c index ede3df2a0b0..1f9d7ae1c50 100644 --- a/src/mesa/main/texenvprogram.c +++ b/src/mesa/main/texenvprogram.c @@ -705,6 +705,16 @@ void _mesa_UpdateTexEnvProgram( GLcontext *ctx ) p.program->NumTexIndirections = 1; /* correct? */ p.program->NumTexInstructions = 0; p.program->NumAluInstructions = 0; + p.program->Base.String = 0; + p.program->Base.NumInstructions = + p.program->Base.NumTemporaries = + p.program->Base.NumParameters = + p.program->Base.NumAttributes = p.program->Base.NumAddressRegs = 0; + if (p.program->Parameters) + _mesa_free_parameter_list(p.program->Parameters); + p.program->Parameters = _mesa_new_parameter_list(); + p.program->InputsRead = 0; + p.program->OutputsWritten = 0; p.src_texture = undef; p.src_previous = undef;