From d5bcbd2f0eda08b7ac28fe6141a7b189aa4afa45 Mon Sep 17 00:00:00 2001 From: Rene Brun <Rene.Brun@cern.ch> Date: Sat, 11 Jan 2003 09:10:44 +0000 Subject: [PATCH] From Philippe. Remove a small memory leak from rootcint git-svn-id: http://root.cern.ch/svn/root/trunk@5870 27541ba8-7e3a-0410-8455-c3a389f83636 --- utils/src/rootcint.cxx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/utils/src/rootcint.cxx b/utils/src/rootcint.cxx index 6887e94f940..8119d422a09 100644 --- a/utils/src/rootcint.cxx +++ b/utils/src/rootcint.cxx @@ -1,4 +1,4 @@ -// @(#)root/utils:$Name: $:$Id: rootcint.cxx,v 1.122 2002/12/17 21:14:11 brun Exp $ +// @(#)root/utils:$Name: $:$Id: rootcint.cxx,v 1.123 2003/01/09 06:59:59 brun Exp $ // Author: Fons Rademakers 13/07/96 /************************************************************************* @@ -633,7 +633,8 @@ int NeedTemplateKeyword(G__ClassInfo &cl) // fileinfo.Name()); if (abs(templ->line-cl.LineNumber())<=3 && strcmp(cl.FileName(), fileinfo.Name())==0) { - + + delete [] templatename; // This is an automatically instantiated templated class. #ifdef __KCC // for now KCC works better without it ! @@ -643,13 +644,16 @@ int NeedTemplateKeyword(G__ClassInfo &cl) #endif } else { + delete [] templatename; // This is a specialized templated class return 0; } } else { + delete [] templatename; // It might be a specialization without us seeing the template definition return 0; } + delete [] templatename; } return 0; } -- GitLab