From b69cfdea57781e77acd9a1702b55ec853aec9d14 Mon Sep 17 00:00:00 2001 From: Laurent Montel Date: Fri, 21 Aug 2009 07:41:01 +0000 Subject: [PATCH] Backport: fix mem leak svn path=/branches/KDE/4.3/kdelibs/; revision=1013908 --- 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)