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
path: root/source
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2010-12-02 21:27:04 +0300
committerTon Roosendaal <ton@blender.org>2010-12-02 21:27:04 +0300
commitf94dd65999cbe558ffbf3c0c28df305bbe8124b3 (patch)
tree1a69bd5580d2dbe84993116beef2edbe8ba504bc /source
parent165636690350cf687f2fe0b32fb3f2d0573ef846 (diff)
Bugfix #25010
When loading files without UI (quit.blend) you got memory-free errors for fileselect. Pointers were NULLed where not needed.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenloader/intern/readfile.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 7861e771f8b..50943e8374e 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -4882,10 +4882,6 @@ void lib_link_screen_restore(Main *newmain, bScreen *curscreen, Scene *curscene)
else if(sl->spacetype==SPACE_FILE) {
SpaceFile *sfile= (SpaceFile *)sl;
- sfile->files= NULL;
- sfile->folders_prev= NULL;
- sfile->folders_next= NULL;
- sfile->params= NULL;
sfile->op= NULL;
}
else if(sl->spacetype==SPACE_IMASEL) {