Fix T52315: Crash on duplicating Scene without world.

Regression from rBa7b3047cefcbf, to be backported to 2.79.

Like... seriously... :|
This commit is contained in:
Bastien Montagne 2017-08-09 10:43:04 +02:00
parent 55d28e604e
commit 8c488cb97f
Notes: blender-bot 2023-02-14 06:42:56 +01:00
Referenced by issue #52315, Crash on duplicating Scene
1 changed files with 3 additions and 1 deletions

View File

@ -2137,7 +2137,9 @@ void ED_object_single_users(Main *bmain, Scene *scene, const bool full, const bo
IDP_RelinkProperty(scene->gpd->id.properties);
}
IDP_RelinkProperty(scene->world->id.properties);
if (scene->world) {
IDP_RelinkProperty(scene->world->id.properties);
}
if (scene->clip) {
IDP_RelinkProperty(scene->clip->id.properties);