summaryrefslogtreecommitdiff
path: root/Source/cmCommandArgumentParserHelper.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-05-05 21:45:26 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2006-05-05 21:45:26 -0400
commit51a84aaa57b59c3068df395ce036cafa7b8dc414 (patch)
treeac8b3c4118d932ee6e8dbc6d10d07148e8d6eb8f /Source/cmCommandArgumentParserHelper.cxx
parentbc135b7fc219187b5154e13f3606b64759f269fc (diff)
downloadcmake-51a84aaa57b59c3068df395ce036cafa7b8dc414.tar.gz
ENH: handle empty variables
Diffstat (limited to 'Source/cmCommandArgumentParserHelper.cxx')
-rw-r--r--Source/cmCommandArgumentParserHelper.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmCommandArgumentParserHelper.cxx b/Source/cmCommandArgumentParserHelper.cxx
index f24cab6666..570cc2d6ed 100644
--- a/Source/cmCommandArgumentParserHelper.cxx
+++ b/Source/cmCommandArgumentParserHelper.cxx
@@ -91,6 +91,10 @@ char* cmCommandArgumentParserHelper::ExpandSpecialVariable(const char* key, cons
char* cmCommandArgumentParserHelper::ExpandVariable(const char* var)
{
+ if(!var)
+ {
+ return 0;
+ }
if(this->FileName && strcmp(var, "CMAKE_CURRENT_LIST_FILE") == 0)
{
return this->AddString(this->FileName);