Browse Source

Merge pull request #158 from smeda/bug84415

FIX: 84415 Check for NULL object

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 14 years ago
parent
commit
6c3463593f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      deployment/deployutils/wizardInputs.cpp

+ 1 - 1
deployment/deployutils/wizardInputs.cpp

@@ -463,7 +463,7 @@ void CWizardInputs::generateSoftwareTree(IPropertyTree* pNewEnvTree)
   if(m_buildSetTree)
   {
     bool ovrLog = true, ovrRun = true;
-    if (m_overrideDirs->count() > 0)
+    if (m_overrideDirs && m_overrideDirs->count() > 0)
     {
       HashIterator iter(*m_overrideDirs);