== Sequencer ==

Fixed crash with metastrips where ibufs where null...
This commit is contained in:
2008-01-20 08:59:06 +00:00
parent 54cf47aaab
commit 223b4132a0

View File

@@ -1108,7 +1108,9 @@ static void do_build_seq_ibuf(Sequence * seq, TStripElem *se, int cfra)
IMB_freeImBuf(se->ibuf);
}
se->ibuf = se->se1->ibuf_comp;
IMB_refImBuf(se->ibuf);
if(se->ibuf) {
IMB_refImBuf(se->ibuf);
}
}
} else if(seq->type & SEQ_EFFECT) {
/* should the effect be recalculated? */