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:
authorPhilipp Oeser <info@graphics-engineer.com>2021-11-19 12:09:29 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2021-11-19 12:09:29 +0300
commit48e64a5fb5d0d9f31e7eb95a5d2e8163d96183fa (patch)
tree8a164e3c47230f8c338b0d902a03c7bc05bf2d5e /source/blender/blenloader
parent992634427ee4aa2ab7a4d0b47ef857f83292f874 (diff)
parent4ea6b4ba8475f4f6bb02799f7ef8cd261ecb4398 (diff)
Merge branch 'blender-v3.0-release'
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/versioning_300.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/versioning_300.c b/source/blender/blenloader/intern/versioning_300.c
index 8156c83233a..095247e5748 100644
--- a/source/blender/blenloader/intern/versioning_300.c
+++ b/source/blender/blenloader/intern/versioning_300.c
@@ -2230,7 +2230,9 @@ void blo_do_versions_300(FileData *fd, Library *UNUSED(lib), Main *bmain)
* It was possible to save .blend file with incorrect state of meta strip
* range. The root cause is expected to be fixed, but need to ensure files
* with invalid meta strip range are corrected. */
- SEQ_for_each_callback(&ed->seqbase, version_fix_seq_meta_range, scene);
+ if (ed != NULL) {
+ SEQ_for_each_callback(&ed->seqbase, version_fix_seq_meta_range, scene);
+ }
}
}
}