From 321c0f467179b8e410d8b74d3805f900045f487d Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Fri, 11 Jan 2013 00:23:41 -0800 Subject: texelFetch: Fix incorrect sizeof. Fixes sizeof not portable defect reported by Coverity. Fixes allocator sizeof operand mismatch bug reported by Clang Static Analyzer. Signed-off-by: Vinson Lee Reviewed-by: Brian Paul --- tests/texturing/shaders/texelFetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/texturing/shaders/texelFetch.c b/tests/texturing/shaders/texelFetch.c index 78a4162a..50e91a6a 100644 --- a/tests/texturing/shaders/texelFetch.c +++ b/tests/texturing/shaders/texelFetch.c @@ -297,7 +297,7 @@ generate_texture() expected_colors = calloc(miplevels, sizeof(float **)); for (l = 0; l < miplevels; l++) { - expected_colors[l] = calloc(level_size[l][2], sizeof(float **)); + expected_colors[l] = calloc(level_size[l][2], sizeof(float *)); i_ptr = i_level = malloc(level_size[l][0] * level_size[l][1] * -- cgit v1.2.3