Merge branch 'blender-v3.0-release'

This commit is contained in:
Philipp Oeser 2021-11-19 10:09:29 +01:00
commit 48e64a5fb5
1 changed files with 3 additions and 1 deletions

View File

@ -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);
}
}
}
}