]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/BASE/AliHLTConfiguration.cxx
Bug fix. Was checking the wrong pointer for NULL value.
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTConfiguration.cxx
index 1c761a2944ac7c28f75e940a49a49b81db1d5ff4..2a8d625c1d9e780a11905ff6733715f3677e5805 100644 (file)
@@ -170,7 +170,7 @@ int AliHLTConfiguration::GlobalDeinit(AliHLTConfigurationHandler* pHandler)
 {
   // see header file for function documentation
   int iResult=0;
-  if (pHandler!=NULL && fgConfigurationHandler!=pHandler) {
+  if (fgConfigurationHandler!=NULL && fgConfigurationHandler!=pHandler) {
     fgConfigurationHandler->Logging(kHLTLogWarning, "AliHLTConfiguration::GlobalDeinit", HLT_DEFAULT_LOG_KEYWORD, "handler %p is not set, skip ...", pHandler);
     return -EBADF;
   }