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:
authorSybren A. Stüvel <sybren@blender.org>2020-11-19 15:02:13 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-11-19 15:02:13 +0300
commitaf7af488d483852ac97e4450c33800612bfc6d6a (patch)
tree60687c2e6171e61ee8752e20622f98670e78308e /source/blender/editors/space_graph/graph_edit.c
parent226feb52eca303c31bc799034ec5eb7598383391 (diff)
Cleanup: Animation, fix uninitialised variable in Euler filter code
No functional changes.
Diffstat (limited to 'source/blender/editors/space_graph/graph_edit.c')
-rw-r--r--source/blender/editors/space_graph/graph_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c
index bf76d4a632a..09440ee7d98 100644
--- a/source/blender/editors/space_graph/graph_edit.c
+++ b/source/blender/editors/space_graph/graph_edit.c
@@ -2615,7 +2615,7 @@ static ListBase /*tEulerFilter*/ euler_filter_group_channels(
const ListBase /*bAnimListElem*/ *anim_data, ReportList *reports, int *r_num_groups)
{
ListBase euler_groups = {NULL, NULL};
- tEulerFilter *euf;
+ tEulerFilter *euf = NULL;
*r_num_groups = 0;
LISTBASE_FOREACH (bAnimListElem *, ale, anim_data) {