Fix for [#24510] VSE SceneStrip problem when rendering animation

This commit is contained in:
Janne Karhu
2010-11-04 18:16:34 +00:00
parent 27de85af37
commit 951882e289

View File

@@ -2524,6 +2524,12 @@ static void do_render_seq(Render * re)
/* if (R.rectz) freeN(R.rectz); */
/* R.rectz = BLI_dupallocN(ibuf->zbuf); */
/* } */
/* Same things as above, old rectf can hang around from previous render. */
if(rr->rectf) {
MEM_freeN(rr->rectf);
rr->rectf= NULL;
}
}
if (recurs_depth == 0) { /* with nested scenes, only free on toplevel... */