Przeglądaj źródła

ENH: handle empty lists correctly

Bill Hoffman 17 lat temu
rodzic
commit
4801fb841f
1 zmienionych plików z 5 dodań i 0 usunięć
  1. 5 0
      Source/cmListCommand.cxx

+ 5 - 0
Source/cmListCommand.cxx

@@ -103,6 +103,11 @@ bool cmListCommand::GetList(std::vector<std::string>& list, const char* var)
     {
     return false;
     }
+  // if the size of the list 
+  if(listString.size() == 0)
+    {
+    return true;
+    }
   // expand the variable into a list
   cmSystemTools::ExpandListArgument(listString, list, true);
   // check the list for empty values