From f3b68fc5fc806cbfd5e7d79b8679fd2bcbae71f4 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Sat, 27 Feb 2016 16:38:26 -0800 Subject: glsl: Initialize gl_shader_program::EmptyUniformLocations. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit 65dfb30 added exec_list EmptyUniformLocations, but only initialized the list if ARB_explicit_uniform_location was enabled, leading to crashes if the extension was not available. Cc: "11.2" Reviewed-by: Tapani Pälli --- src/compiler/glsl/linker.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src/compiler/glsl/linker.cpp') diff --git a/src/compiler/glsl/linker.cpp b/src/compiler/glsl/linker.cpp index 5326bfd4d68..3039232162a 100644 --- a/src/compiler/glsl/linker.cpp +++ b/src/compiler/glsl/linker.cpp @@ -3180,7 +3180,6 @@ check_explicit_uniform_locations(struct gl_context *ctx, } } - exec_list_make_empty(&prog->EmptyUniformLocations); struct empty_uniform_block *current_block = NULL; for (unsigned i = 0; i < prog->NumUniformRemapTable; i++) { -- cgit v1.2.3