From 02b827a1fdcde97561504d7296f313f82de719af Mon Sep 17 00:00:00 2001 From: Laurent Montel Date: Fri, 21 Aug 2009 07:31:20 +0000 Subject: [PATCH] Fix mem leak here too svn path=/trunk/KDE/kdelibs/; revision=1013906 --- scripting/runnerscript.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripting/runnerscript.cpp b/scripting/runnerscript.cpp index b40b18a52..9c0d9d17a 100644 --- a/scripting/runnerscript.cpp +++ b/scripting/runnerscript.cpp @@ -39,7 +39,7 @@ RunnerScript::RunnerScript(QObject *parent) RunnerScript::~RunnerScript() { -// delete d; + delete d; } void RunnerScript::setRunner(AbstractRunner *runner)