From 502c10839e53e7f7e709c10927405d1b84961b80 Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Sun, 29 Jul 2012 17:54:55 -0700 Subject: [PATCH] mesa: Fix wrong sizeof argument in _math_matrix_copy. Fixes Coverity wrong sizeof argument defect. Signed-off-by: Vinson Lee Signed-off-by: Brian Paul --- src/mesa/math/m_matrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/math/m_matrix.c b/src/mesa/math/m_matrix.c index 40f9229..7c4e9fd 100644 --- a/src/mesa/math/m_matrix.c +++ b/src/mesa/math/m_matrix.c @@ -1437,7 +1437,7 @@ void _math_matrix_copy( GLmatrix *to, const GLmatrix *from ) { memcpy( to->m, from->m, sizeof(Identity) ); - memcpy(to->inv, from->inv, sizeof(from->inv)); + memcpy(to->inv, from->inv, sizeof(*from->inv)); to->flags = from->flags; to->type = from->type; } -- 2.7.4