浏览代码

Merge pull request #158 from smeda/bug84415

FIX: 84415 Check for NULL object

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 14 年之前
父节点
当前提交
6c3463593f
共有 1 个文件被更改,包括 1 次插入1 次删除
  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);