[Bf-blender-cvs] [9600f36cfcb] blender-v3.0-release: Fix T94768: Crash in VSE prefetching

Richard Antalik noreply at git.blender.org
Mon Jan 17 13:25:35 CET 2022


Commit: 9600f36cfcba0bb9182e8fd453b7ef2040f8886a
Author: Richard Antalik
Date:   Mon Jan 17 13:07:21 2022 +0100
Branches: blender-v3.0-release
https://developer.blender.org/rB9600f36cfcba0bb9182e8fd453b7ef2040f8886a

Fix T94768: Crash in VSE prefetching

Only the fix part of rBf2fb9a0c59a applied (P2726).

===================================================================

M	source/blender/sequencer/intern/prefetch.c

===================================================================

diff --git a/source/blender/sequencer/intern/prefetch.c b/source/blender/sequencer/intern/prefetch.c
index 3e0b4738db1..36fb57a6266 100644
--- a/source/blender/sequencer/intern/prefetch.c
+++ b/source/blender/sequencer/intern/prefetch.c
@@ -491,7 +491,7 @@ static void *seq_prefetch_frames(void *job)
      */
     pfjob->scene_eval->ed->prefetch_job = pfjob;
 
-    ListBase *seqbase = SEQ_active_seqbase_get(SEQ_editing_get(pfjob->scene));
+    ListBase *seqbase = SEQ_active_seqbase_get(SEQ_editing_get(pfjob->scene_eval));
     if (seq_prefetch_must_skip_frame(pfjob, seqbase)) {
       pfjob->num_frames_prefetched++;
       continue;



More information about the Bf-blender-cvs mailing list