From a0ae47f06c6232a91202bd06ea173b955735596b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 11 Sep 2012 02:18:27 +0000 Subject: add some missing NULL checks, a few parts of the code used a pointer then checked it for NULL after. also made it more clear that some areas assume the pointer isnt null (remove redundant NULL checks). --- source/blender/editors/animation/keyframing.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'source/blender/editors/animation') diff --git a/source/blender/editors/animation/keyframing.c b/source/blender/editors/animation/keyframing.c index 3ef686910e6..8cd8cfaea51 100644 --- a/source/blender/editors/animation/keyframing.c +++ b/source/blender/editors/animation/keyframing.c @@ -164,10 +164,7 @@ FCurve *verify_fcurve(bAction *act, const char group[], PointerRNA *ptr, * - add if not found and allowed to add one * TODO: add auto-grouping support? how this works will need to be resolved */ - if (act) - fcu = list_find_fcurve(&act->curves, rna_path, array_index); - else - fcu = NULL; + fcu = list_find_fcurve(&act->curves, rna_path, array_index); if ((fcu == NULL) && (add)) { /* use default settings to make a F-Curve */ -- cgit v1.2.3