Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-23 13:50:31 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-24 12:14:49 +0300
commit727d6644da08a66673dd4fb7665a1796d2fd1866 (patch)
tree3b2197d4ed7a64558f376d2593f5b408701e498c /source/blender/editors/armature/pose_select.c
parente1a66201da2595b8d5afd7072a1f3730ca34d04a (diff)
Cleanup: fix compiler warnings.
Diffstat (limited to 'source/blender/editors/armature/pose_select.c')
-rw-r--r--source/blender/editors/armature/pose_select.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/armature/pose_select.c b/source/blender/editors/armature/pose_select.c
index 08ac5d1ec51..0c7de754482 100644
--- a/source/blender/editors/armature/pose_select.c
+++ b/source/blender/editors/armature/pose_select.c
@@ -711,6 +711,7 @@ static bool pose_select_same_group(bContext *C, bool extend)
groups_len++;
group_flags_array = MEM_callocN(objects_len * groups_len * sizeof(bool), "pose_select_same_group");
+ group_flags = NULL;
ob_index = -1;
ob_prev = NULL;
CTX_DATA_BEGIN_WITH_ID (C, bPoseChannel *, pchan, visible_pose_bones, Object, *ob)
@@ -736,6 +737,7 @@ static bool pose_select_same_group(bContext *C, bool extend)
/* small optimization: only loop through bones a second time if there are any groups tagged */
if (tagged) {
+ group_flags = NULL;
ob_index = -1;
ob_prev = NULL;
/* only if group matches (and is not selected or current bone) */
@@ -791,6 +793,7 @@ static bool pose_select_same_layer(bContext *C, bool extend)
layers_array = MEM_callocN(objects_len * sizeof(*layers_array), "pose_select_same_layer");
/* Figure out what bones are selected. */
+ layers = NULL;
ob_prev = NULL;
ob_index = -1;
CTX_DATA_BEGIN_WITH_ID (C, bPoseChannel *, pchan, visible_pose_bones, Object *, ob)