瀏覽代碼

server-mode: Do not ignore the first cacheArgument on configure

SetCacheArgs skips the first argument it gets, so add some padding before
calling it.
Tobias Hunger 9 年之前
父節點
當前提交
28e891f0c7
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Source/cmServerProtocol.cxx

+ 1 - 1
Source/cmServerProtocol.cxx

@@ -923,7 +923,7 @@ cmServerResponse cmServerProtocol1_0::ProcessConfigure(
   }
 
   // Make sure the types of cacheArguments matches (if given):
-  std::vector<std::string> cacheArgs;
+  std::vector<std::string> cacheArgs = { "unused" };
   bool cacheArgumentsError = false;
   const Json::Value passedArgs = request.Data[kCACHE_ARGUMENTS_KEY];
   if (!passedArgs.isNull()) {