From: Brian Paul Date: Sat, 29 Oct 2005 17:07:09 +0000 (+0000) Subject: Free old parameter list before assigning new one. FIxes memory leak. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1a979736a6524a2987fcd6a8b1eda10016db96df;p=mesa.git Free old parameter list before assigning new one. FIxes memory leak. --- diff --git a/src/mesa/shader/arbfragparse.c b/src/mesa/shader/arbfragparse.c index 3ef6f8b137a..7b9abec1c94 100644 --- a/src/mesa/shader/arbfragparse.c +++ b/src/mesa/shader/arbfragparse.c @@ -209,14 +209,19 @@ _mesa_parse_arb_fragment_program(GLcontext * ctx, GLenum target, program->Base.NumParameters = ap.Base.NumParameters; program->Base.NumAttributes = ap.Base.NumAttributes; program->Base.NumAddressRegs = ap.Base.NumAddressRegs; + program->NumAluInstructions = ap.NumAluInstructions; + program->NumTexInstructions = ap.NumTexInstructions; + program->NumTexIndirections = ap.NumTexIndirections; program->InputsRead = ap.InputsRead; program->OutputsWritten = ap.OutputsWritten; for (i = 0; i < MAX_TEXTURE_IMAGE_UNITS; i++) program->TexturesUsed[i] = ap.TexturesUsed[i]; - program->NumAluInstructions = ap.NumAluInstructions; - program->NumTexInstructions = ap.NumTexInstructions; - program->NumTexIndirections = ap.NumTexIndirections; + + if (program->Parameters) { + /* free previous program's parameters */ + _mesa_free_parameter_list(program->Parameters); + } program->Parameters = ap.Parameters; program->FogOption = ap.FogOption; diff --git a/src/mesa/shader/arbvertparse.c b/src/mesa/shader/arbvertparse.c index 0208389c355..5d1ad3de2e7 100644 --- a/src/mesa/shader/arbvertparse.c +++ b/src/mesa/shader/arbvertparse.c @@ -191,6 +191,11 @@ _mesa_parse_arb_vertex_program(GLcontext * ctx, GLenum target, program->IsPositionInvariant = ap.HintPositionInvariant; program->InputsRead = ap.InputsRead; program->OutputsWritten = ap.OutputsWritten; + + if (program->Parameters) { + /* free previous program's parameters */ + _mesa_free_parameter_list(program->Parameters); + } program->Parameters = ap.Parameters; program->Instructions = ap.VPInstructions;