-another quick fix. Runtime checks complain that a unused reference being returned from a function.
This commit is contained in:
Joseph Gilbert 2006-06-07 15:09:07 +00:00
parent 8e631bd4b6
commit 4c802a0a78

@ -2891,7 +2891,10 @@ static Sequence * find_sequence_from_ipo_helper(Main * main, Ipo * ipo)
}
sce= sce->id.next;
}
return seq;
if (seq)
return seq;
else
return NULL;
}
static void lib_link_screen_sequence_ipos(Main *main)