Fix T69558: crash in BKE_scene_update_sound for a soundstrip without
linked sound Crash could be triggered by just adding any object to the scene. Reviewers: sergey Maniphest Tasks: T69558 Differential Revision: https://developer.blender.org/D5764
This commit is contained in:
@@ -4933,7 +4933,7 @@ static bool sequencer_refresh_sound_length_recursive(Main *bmain, Scene *scene,
|
|||||||
changed = true;
|
changed = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (seq->type == SEQ_TYPE_SOUND_RAM) {
|
else if (seq->type == SEQ_TYPE_SOUND_RAM && seq->sound) {
|
||||||
const float length = BKE_sound_get_length(bmain, seq->sound);
|
const float length = BKE_sound_get_length(bmain, seq->sound);
|
||||||
int old = seq->len;
|
int old = seq->len;
|
||||||
float fac;
|
float fac;
|
||||||
|
|||||||
Reference in New Issue
Block a user