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:
authorCampbell Barton <ideasman42@gmail.com>2011-01-04 11:56:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-04 11:56:25 +0300
commit9cafe19c707971f916060f94c40660e6b65a30e3 (patch)
tree756d94eb7925de0b2120886f1fe87d61eba3610a /source/blender/editors/animation
parenta735629fd17edd9c0919789dddabee71012fa6a5 (diff)
- use BKE_keyingset_free_path where paths were being freed inline.
- rna_path was being freed when null, printing errors.
Diffstat (limited to 'source/blender/editors/animation')
-rw-r--r--source/blender/editors/animation/keyingsets.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/source/blender/editors/animation/keyingsets.c b/source/blender/editors/animation/keyingsets.c
index 09128672df8..433abc7d3d1 100644
--- a/source/blender/editors/animation/keyingsets.c
+++ b/source/blender/editors/animation/keyingsets.c
@@ -418,12 +418,9 @@ static int remove_keyingset_button_exec (bContext *C, wmOperator *op)
/* try to find a path matching this description */
ksp= BKE_keyingset_find_path(ks, ptr.id.data, ks->name, path, index, KSP_GROUP_KSNAME);
-
+
if (ksp) {
- /* just free it... */
- MEM_freeN(ksp->rna_path);
- BLI_freelinkN(&ks->paths, ksp);
-
+ BKE_keyingset_free_path(ks, ksp);
success= 1;
}