From 4b545d1bbf4363675ecdce4e886377b4dd848442 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 16 Dec 2018 09:46:34 +1100 Subject: Fix T58975: "@=" operator silently fails D4083 by @artfunkel --- source/blender/python/mathutils/mathutils_Matrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/python') diff --git a/source/blender/python/mathutils/mathutils_Matrix.c b/source/blender/python/mathutils/mathutils_Matrix.c index d9319f1ae7c..76921b69d1a 100644 --- a/source/blender/python/mathutils/mathutils_Matrix.c +++ b/source/blender/python/mathutils/mathutils_Matrix.c @@ -2550,7 +2550,7 @@ static PyObject *Matrix_imatmul(PyObject *m1, PyObject *m2) } /* copy matrix back */ - memcpy(mat1->matrix, mat, mat1->num_row * mat1->num_col); + memcpy(mat1->matrix, mat, (mat1->num_row * mat1->num_col) * sizeof(float)); } else { PyErr_Format(PyExc_TypeError, -- cgit v1.2.3