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/space_outliner/outliner.c
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/space_outliner/outliner.c')
-rw-r--r--source/blender/editors/space_outliner/outliner.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/source/blender/editors/space_outliner/outliner.c b/source/blender/editors/space_outliner/outliner.c
index b611322d7e9..799a4200ecf 100644
--- a/source/blender/editors/space_outliner/outliner.c
+++ b/source/blender/editors/space_outliner/outliner.c
@@ -4144,12 +4144,9 @@ static void do_outliner_keyingset_editop(SpaceOops *soops, KeyingSet *ks, ListBa
if (ksp) {
/* free path's data */
- // TODO: we probably need an API method for this
- if (ksp->rna_path) MEM_freeN(ksp->rna_path);
+ BKE_keyingset_free_path(ks, ksp);
+
ks->active_path= 0;
-
- /* remove path from set */
- BLI_freelinkN(&ks->paths, ksp);
}
}
break;