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@pandora.be>2011-11-22 18:55:53 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-11-22 18:55:53 +0400
commitf2136b1d50d6a79cf1a4c197cf58cd873e2d7a38 (patch)
treedf7eaf450cc2128f23d216fbf20fb9a586dff82a /source/blender/editors/space_buttons
parent676c2924d933d6116081de999cf51af72a9b512b (diff)
Fix a crash switching from cycles to blender internal, wrong order of freeing.
Diffstat (limited to 'source/blender/editors/space_buttons')
-rw-r--r--source/blender/editors/space_buttons/buttons_texture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_buttons/buttons_texture.c b/source/blender/editors/space_buttons/buttons_texture.c
index 4446a2e848a..c0ccaeaea90 100644
--- a/source/blender/editors/space_buttons/buttons_texture.c
+++ b/source/blender/editors/space_buttons/buttons_texture.c
@@ -257,8 +257,8 @@ void buttons_texture_context_compute(const bContext *C, SpaceButs *sbuts)
if(!scene_use_new_shading_nodes(scene)) {
if(ct) {
- MEM_freeN(ct);
BLI_freelistN(&ct->users);
+ MEM_freeN(ct);
sbuts->texuser= NULL;
}