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>2008-03-14 12:46:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-03-14 12:46:53 +0300
commit3bec4f5f87c1e8422793e1832ccad6115f4bb561 (patch)
treedeb763504c752371b7ce13454d5e7e8b3e7903c0 /source/blender/blenloader/intern
parentea460298bbb1322b990bf737fcd0f77fd535c097 (diff)
my last commit to readfile.c crashes some files, must look further into this.
Diffstat (limited to 'source/blender/blenloader/intern')
-rw-r--r--source/blender/blenloader/intern/readfile.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 1557e970306..92fb7690a03 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -7794,7 +7794,8 @@ static void expand_doit(FileData *fd, Main *mainvar, void *old)
* user.blend, lib.blend and lib_indirect.blend - if user.blend alredy references a "tree" from
* lib_indirect.blend but lib.blend does too, linking in a Scene or Group from lib.blend can result in an
* empty without the dupli group referenced. Once you save and reload the group would appier. - Campbell */
- oldnewmap_insert(fd->libmap, bhead->old, id, 1);
+ /* This crashes files, must look further into it */
+ /*oldnewmap_insert(fd->libmap, bhead->old, id, 1);*/
change_idid_adr_fd(fd, bhead->old, id);
if(G.f & G_DEBUG) printf("expand_doit: already linked: %s lib: %s\n", id->name, lib->name);