From 9ca8815d3ba56ad718ba1c48c73aae3cdc0b8db0 Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Tue, 10 May 2005 09:56:02 +0000 Subject: Fix texenv segfault. Reported by Ben Skeggs. --- src/mesa/main/texenvprogram.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/mesa') diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c index ede3df2a0b..1f9d7ae1c5 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; -- cgit v1.2.3