From: Ilia Mirkin Date: Sun, 17 May 2015 21:56:44 +0000 (-0400) Subject: glsl: avoid leaking linked gl_shader when there's a late linker error X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5646f0f18a620292524eebcd77353ff3d3687eb2;p=mesa.git glsl: avoid leaking linked gl_shader when there's a late linker error This makes piglit mixing-clip-distance-and-clip-vertex-disallowed have 0 definitely lost blocks with valgrind. (Same non-0 number of possibly lost blocks though.) Signed-off-by: Ilia Mirkin Reviewed-by: Tobias Klausmann Cc: "10.5 10.6" --- diff --git a/src/glsl/linker.cpp b/src/glsl/linker.cpp index 9798afefc98..99e0a388bb4 100644 --- a/src/glsl/linker.cpp +++ b/src/glsl/linker.cpp @@ -2829,8 +2829,11 @@ link_shaders(struct gl_context *ctx, struct gl_shader_program *prog) link_intrastage_shaders(mem_ctx, ctx, prog, shader_list[stage], num_shaders[stage]); - if (!prog->LinkStatus) + if (!prog->LinkStatus) { + if (sh) + ctx->Driver.DeleteShader(ctx, sh); goto done; + } switch (stage) { case MESA_SHADER_VERTEX: @@ -2843,8 +2846,11 @@ link_shaders(struct gl_context *ctx, struct gl_shader_program *prog) validate_fragment_shader_executable(prog, sh); break; } - if (!prog->LinkStatus) + if (!prog->LinkStatus) { + if (sh) + ctx->Driver.DeleteShader(ctx, sh); goto done; + } _mesa_reference_shader(ctx, &prog->_LinkedShaders[stage], sh); }