From 207e57e4c2cab542a3c7f87b8b582ab7d6b403e7 Mon Sep 17 00:00:00 2001 From: Pawel Date: Fri, 13 Jul 2012 16:14:38 +0200 Subject: [PATCH] 0023279: Accessing NULL pointer Assuring the pointer is not 'NULL'. --- src/Standard/Standard.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Standard/Standard.cxx b/src/Standard/Standard.cxx index 4584292a9e..1ea0610399 100755 --- a/src/Standard/Standard.cxx +++ b/src/Standard/Standard.cxx @@ -108,7 +108,7 @@ Standard_MMgrFactory::Standard_MMgrFactory() Standard_MMgrFactory::~Standard_MMgrFactory() { - if ( ! myFMMgr ) { + if ( myFMMgr ) { myFMMgr->Purge(Standard_True); // delete myFMMgr; // myFMMgr = 0;