[Piglit] [PATCH] texelFetch: Fix incorrect sizeof.
Vinson Lee
vlee at freedesktop.org
Fri Jan 11 00:28:09 PST 2013
Fixes sizeof not portable defect reported by Coverity.
Fixes allocator sizeof operand mismatch bug reported by Clang Static
Analyzer.
Signed-off-by: Vinson Lee <vlee at freedesktop.org>
---
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
More information about the Piglit
mailing list