From 039ca2f9c23aa4552efeb1031781f06541e5cf33 Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Fri, 29 Feb 2008 12:53:26 +0000 Subject: [PATCH] fix some memory leaks svn path=/trunk/; revision=32532 --- reactos/tools/rbuild/module.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/reactos/tools/rbuild/module.cpp b/reactos/tools/rbuild/module.cpp index 116ff669a9c..20912ceeaf8 100644 --- a/reactos/tools/rbuild/module.cpp +++ b/reactos/tools/rbuild/module.cpp @@ -486,6 +486,10 @@ Module::~Module () delete linkerScript; if ( pch ) delete pch; + if ( install ) + delete install; + if ( output ) + delete output; } void