Fixes sizeof not portable defect reported by Coverity. Fixes allocator sizeof operand mismatch bug reported by Clang Static Analyzer.
Signed-off-by: Vinson Lee <[email protected]> --- 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 78a4162..50e91a6 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] * -- 1.8.1 _______________________________________________ Piglit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/piglit
