summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-05-29 11:13:15 (GMT)
committerKitware Robot <kwrobot@kitware.com>2020-05-29 11:13:22 (GMT)
commitce7570e21a65ea4ccfdb133a8d382851ed85291d (patch)
tree9cd533776ce33184aa38d593f4853182af723708 /Source
parent6f572c6b81c01d1a3f0500a29c0d0ce5a05ff47d (diff)
parentd606b19f7d71f59f0d77facb59169ee2a1e0f649 (diff)
downloadCMake-ce7570e21a65ea4ccfdb133a8d382851ed85291d.zip
CMake-ce7570e21a65ea4ccfdb133a8d382851ed85291d.tar.gz
CMake-ce7570e21a65ea4ccfdb133a8d382851ed85291d.tar.bz2
Merge topic 'bugfix-gcev'
d606b19f7d server-mode: Fix regression in cache entry reporting Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4808
Diffstat (limited to 'Source')
-rw-r--r--Source/cmServerProtocol.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmServerProtocol.cxx b/Source/cmServerProtocol.cxx
index 6b32de3..00ac337 100644
--- a/Source/cmServerProtocol.cxx
+++ b/Source/cmServerProtocol.cxx
@@ -446,7 +446,7 @@ cmServerResponse cmServerProtocol1::ProcessCache(
entry[kKEY_KEY] = key;
entry[kTYPE_KEY] =
cmState::CacheEntryTypeToString(state->GetCacheEntryType(key));
- entry[kVALUE_KEY] = state->GetCacheEntryValue(key);
+ entry[kVALUE_KEY] = *state->GetCacheEntryValue(key);
Json::Value props = Json::objectValue;
bool haveProperties = false;