From ae92e24b0cb444b6cabebde8dc3910cd92e5f581 Mon Sep 17 00:00:00 2001 From: Simon Marchetto Date: Mon, 22 Jul 2013 17:41:45 +0200 Subject: [PATCH] Scilab: missing delete variable in scilab program --- Source/Modules/scilab.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Modules/scilab.cxx b/Source/Modules/scilab.cxx index 7602365f3..e8c539346 100644 --- a/Source/Modules/scilab.cxx +++ b/Source/Modules/scilab.cxx @@ -221,6 +221,8 @@ public: Close(beginSection); Delete(beginSection); + Delete(sourceFileList); + return SWIG_OK; }