Fix for [#24169] Sequencer segfaults often when scrubbing to frame zero

This commit is contained in:
2010-10-12 10:30:29 +00:00
parent 7ef6836be4
commit 4754d6a27d

View File

@@ -1005,7 +1005,7 @@ static int get_shown_sequences( ListBase * seqbasep, int cfra, int chanshown, Se
}
}
for (;b <= chanshown; b++) {
for (;b <= chanshown && b >= 0; b++) {
if (video_seq_is_rendered(seq_arr[b])) {
seq_arr_out[cnt++] = seq_arr[b];
}