From: Vinson Lee Date: Thu, 29 Nov 2012 06:36:30 +0000 (-0800) Subject: llvmpipe: Fix incorrect sizeof. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f126f34c1d1726336586da7f5a726546963a0f0a;p=mesa.git llvmpipe: Fix incorrect sizeof. Fixes sizeof not portable defects reported by Coverity. Signed-off-by: Vinson Lee Reviewed-by: Brian Paul --- diff --git a/src/gallium/drivers/llvmpipe/lp_state_fs.c b/src/gallium/drivers/llvmpipe/lp_state_fs.c index 83933bb426e..d6a05d2622b 100644 --- a/src/gallium/drivers/llvmpipe/lp_state_fs.c +++ b/src/gallium/drivers/llvmpipe/lp_state_fs.c @@ -1088,7 +1088,7 @@ convert_to_blend_type(struct gallivm_state *gallivm, unsigned pixels = 16 / num_srcs; bool is_arith; - memcpy(dst, src, sizeof(LLVMValueRef*) * num_srcs); + memcpy(dst, src, sizeof(LLVMValueRef) * num_srcs); lp_mem_type_from_format_desc(src_fmt, &mem_type); lp_blend_type_from_format_desc(src_fmt, &blend_type); @@ -1190,7 +1190,7 @@ convert_from_blend_type(struct gallivm_state *gallivm, unsigned pixels = 16 / num_srcs; bool is_arith; - memcpy(dst, src, sizeof(LLVMValueRef*) * num_srcs); + memcpy(dst, src, sizeof(LLVMValueRef) * num_srcs); lp_mem_type_from_format_desc(src_fmt, &mem_type); lp_blend_type_from_format_desc(src_fmt, &blend_type);