Fix T58975: "@=" operator silently fails

D4083 by @artfunkel
This commit is contained in:
2018-12-16 09:46:34 +11:00
parent 3e311fdcd1
commit 4b545d1bbf

View File

@@ -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,