[Bf-blender-cvs] [32e36a17824] master: Correct own error simplifying matrix checks

Campbell Barton noreply at git.blender.org
Sat Sep 2 15:59:27 CEST 2017


Commit: 32e36a17824336c5438b1e84542319480c87883c
Author: Campbell Barton
Date:   Sun Sep 3 00:05:11 2017 +1000
Branches: master
https://developer.blender.org/rB32e36a17824336c5438b1e84542319480c87883c

Correct own error simplifying matrix checks

===================================================================

M	source/blender/python/bmesh/bmesh_py_ops_call.c

===================================================================

diff --git a/source/blender/python/bmesh/bmesh_py_ops_call.c b/source/blender/python/bmesh/bmesh_py_ops_call.c
index b8ff0588581..f3fe4ff29e4 100644
--- a/source/blender/python/bmesh/bmesh_py_ops_call.c
+++ b/source/blender/python/bmesh/bmesh_py_ops_call.c
@@ -205,7 +205,7 @@ static int bpy_slot_from_py(
 			if (!Matrix_ParseAny(value, &pymat)) {
 				return -1;
 			}
-			if ((size = (pymat->num_col) != pymat->num_row) || (!ELEM(size, 3, 4))) {
+			if (((size = pymat->num_col) != pymat->num_row) || (!ELEM(size, 3, 4))) {
 				PyErr_Format(PyExc_TypeError,
 				             "%.200s: keyword \"%.200s\" expected a 3x3 or 4x4 matrix Matrix",
 				             opname, slot_name);



More information about the Bf-blender-cvs mailing list