Plumiferos bug report; duplicating strips with effects crashed.

Was in new code that handlerized callbacks... leaving function pointers
unassigned. Dubious code... I would NULL everything first before filling.
This commit is contained in:
2006-05-18 19:42:47 +00:00
parent d41fd9079d
commit 18bcef6777

View File

@@ -2454,7 +2454,8 @@ struct SeqEffectHandle get_sequence_effect(Sequence * seq)
rval.free = free_noop;
rval.early_out = early_out_noop;
rval.get_default_fac = get_default_fac_noop;
rval.execute = 0;
rval.execute = NULL;
rval.copy = NULL;
switch (sequence_type) {
case SEQ_CROSS: