Fix #24094: Multiresolution sculpt mode undo crash

This commit is contained in:
Sergey Sharybin 2010-10-02 11:39:11 +00:00
parent 3716e6a176
commit 4c63215e38
1 changed files with 3 additions and 1 deletions

View File

@ -4100,8 +4100,10 @@ static void direct_link_object(FileData *fd, Object *ob)
ob->gpulamp.first= ob->gpulamp.last= NULL;
link_list(fd, &ob->pc_ids);
if(ob->sculpt)
if(ob->sculpt) {
ob->sculpt= MEM_callocN(sizeof(SculptSession), "reload sculpt session");
ob->sculpt->ob= ob;
}
}
/* ************ READ SCENE ***************** */