From cdf3fb6e7b550999bdae101a42902b02ed96ef9b Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Tue, 3 Dec 2002 12:59:40 -0500 Subject: [PATCH] fix purify FMR --- Source/cmMakefile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index a0cc6b0f9..c5350b96a 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -1218,7 +1218,7 @@ void cmMakefile::RemoveFunctionBlocker(const char *name, if ((*pos)->ShouldRemove(name, args, *this)) { cmFunctionBlocker* b = *pos; - m_FunctionBlockers.remove(*pos); + m_FunctionBlockers.remove(b); delete b; break; }