Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ebb <matt@mke3.net>2009-07-03 15:03:09 +0400
committerMatt Ebb <matt@mke3.net>2009-07-03 15:03:09 +0400
commit7da0d1a71efee9b360eb344e7bfaa9b5f0f4ece5 (patch)
treed584a08435c78637a20e53f10a3b25a82bc9e551
parentd5e9eb7d76792ef019021d64a7229a82b10fdb62 (diff)
* Fixed a crazy memory leak in voxel data image sequence data sourcesim_physics
-rw-r--r--source/blender/render/intern/source/voxeldata.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/render/intern/source/voxeldata.c b/source/blender/render/intern/source/voxeldata.c
index 241b11e04b9..8a1a8e0bbeb 100644
--- a/source/blender/render/intern/source/voxeldata.c
+++ b/source/blender/render/intern/source/voxeldata.c
@@ -121,6 +121,8 @@ void load_frame_image_sequence(Render *re, VoxelData *vd, Tex *tex)
rf +=4;
}
}
+
+ BKE_image_free_anim_ibufs(ima, iuser->framenr);
}
}