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>2010-12-31 14:55:11 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-12-31 14:55:11 +0300
commit683694b520f9eee057d754df279411f51bac1c7d (patch)
treec1fc3ed2bf6c8062f2df23ab88a9538ff528f7af /source/blender/blenloader
parentc68e3913ed861b4a932cc47029997f74e6d795cd (diff)
Fix crash on load with a particular startup.blend, don't know how to redo
creating it, but this should be set to NULL on read.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index b711d704d2d..0dfdd46d17b 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -4540,6 +4540,7 @@ static void direct_link_windowmanager(FileData *fd, wmWindowManager *wm)
wm->drags.first= wm->drags.last= NULL;
wm->windrawable= NULL;
+ wm->winactive= NULL;
wm->initialized= 0;
wm->op_undo_depth= 0;
}