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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-05-15 05:30:03 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-05-15 05:30:03 +0400
commit5e4139c50a4048fefb6835451506147519d00565 (patch)
tree799a1ebc546708e2f1ea0a8e44bfd2cd28c4efd5 /source/blender/freestyle/intern/application
parentbb7b04bd94ee167e9561fe8b8914e3f126dd8abf (diff)
More fix for memory leaks in the Freestyle module.
Diffstat (limited to 'source/blender/freestyle/intern/application')
-rw-r--r--source/blender/freestyle/intern/application/Controller.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/freestyle/intern/application/Controller.cpp b/source/blender/freestyle/intern/application/Controller.cpp
index 7303ccc95f3..436cdbfe6b5 100644
--- a/source/blender/freestyle/intern/application/Controller.cpp
+++ b/source/blender/freestyle/intern/application/Controller.cpp
@@ -165,6 +165,11 @@ Controller::~Controller()
_inter = NULL;
}
+ if (_ProgressBar) {
+ delete _ProgressBar;
+ _ProgressBar = NULL;
+ }
+
//delete _current_dirs;
}