Sequencer crash when combining a scene strip with image strip and cross.
Code lacked proper check for byte buffer in scene...
This commit is contained in:
Ton Roosendaal 2010-12-05 12:32:58 +00:00
parent c98f5b2e4b
commit 2567a0ef52

@ -250,6 +250,8 @@ void IMB_float_from_rect(struct ImBuf *ibuf)
/* no profile conversion */
void IMB_float_from_rect_simple(struct ImBuf *ibuf)
{
if(ibuf->rect_float==NULL)
imb_addrectfloatImBuf(ibuf);
imb_float_from_rect_nonlinear(ibuf, ibuf->rect_float);
}