From 6e6123b40f388a62dcb2268f1a87bee4410f995d Mon Sep 17 00:00:00 2001 From: Richard Antalik Date: Wed, 17 Nov 2021 05:40:25 +0100 Subject: Fix T93080: Crash on scrubbing with snapping Sequencer wasn't initialized, snapping crashed on NULL dereference. Add Null check. --- source/blender/editors/animation/anim_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/animation') diff --git a/source/blender/editors/animation/anim_ops.c b/source/blender/editors/animation/anim_ops.c index 8232df968ed..1e60a129535 100644 --- a/source/blender/editors/animation/anim_ops.c +++ b/source/blender/editors/animation/anim_ops.c @@ -149,7 +149,7 @@ static void change_frame_apply(bContext *C, wmOperator *op) bool do_snap = RNA_boolean_get(op->ptr, "snap"); if (do_snap) { - if (CTX_wm_space_seq(C)) { + if (CTX_wm_space_seq(C) && SEQ_editing_get(scene) != NULL) { frame = seq_frame_apply_snap(C, scene, frame); } else { -- cgit v1.2.3