[Bf-blender-cvs] [91fbdfa] blender-v2.72-release: Fix T41971: BMesh mapping slot arg error

Campbell Barton noreply at git.blender.org
Fri Oct 3 15:24:47 CEST 2014


Commit: 91fbdfa6a504f7f0eb7dbf612c2265c10e64f562
Author: Campbell Barton
Date:   Wed Oct 1 22:36:09 2014 +1000
Branches: blender-v2.72-release
https://developer.blender.org/rB91fbdfa6a504f7f0eb7dbf612c2265c10e64f562

Fix T41971: BMesh mapping slot arg error

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

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 9c9b691..2c07df9 100644
--- a/source/blender/python/bmesh/bmesh_py_ops_call.c
+++ b/source/blender/python/bmesh/bmesh_py_ops_call.c
@@ -507,7 +507,7 @@ static int bpy_slot_from_py(BMesh *bm, BMOperator *bmop, BMOpSlot *slot, PyObjec
 					return -1;
 				}
 			}
-			/* fall-through */
+			break;
 		}
 		default:
 			/* TODO --- many others */




More information about the Bf-blender-cvs mailing list