From d66bfc3f0754d2b563d30ac3e6e7b55f2fdefdf7 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Sun, 23 Jan 2011 23:15:37 +0100 Subject: closed memory leak in debug mode, closed #217 --- module/PluginThread.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'module/PluginThread.py') diff --git a/module/PluginThread.py b/module/PluginThread.py index 216f59853..311d80ba4 100644 --- a/module/PluginThread.py +++ b/module/PluginThread.py @@ -71,6 +71,10 @@ class PluginThread(Thread): dump += pformat(value) + "\n" except Exception, e: dump += " "+ str(e) +"\n" + + del frame + + del stack #delete it just to be sure... dump += "\n\nPLUGIN OBJECT DUMP: \n\n" -- cgit v1.2.3