bugfix [#8263] Video Sequence Editor > Sequence > Reassign Inputs > crash

just missing null checks
This commit is contained in:
Campbell Barton 2008-02-17 21:22:42 +00:00
parent 1648060132
commit fcd78f0817

@ -1657,7 +1657,9 @@ static int seq_effect_find_selected(Editing *ed, Sequence *activeseq, int type,
}
if(seq3==0) seq3= seq2;
}
if (seq1==NULL && seq2==NULL && seq3==NULL) return 0;
*selseq1= seq1;
*selseq2= seq2;
*selseq3= seq3;