mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-16 11:40:25 -06:00
variable_watch: Check newValue for NULL
On read access, newValue can be NULL since there is no new value, so use the empty string instead.
This commit is contained in:
@@ -80,7 +80,7 @@ static void cmVariableWatchCommandVariableAccessed(
|
||||
{
|
||||
cmOStringStream msg;
|
||||
msg << "Variable \"" << variable.c_str() << "\" was accessed using "
|
||||
<< accessString << " with value \"" << newValue << "\".";
|
||||
<< accessString << " with value \"" << (newValue?newValue:"") << "\".";
|
||||
makefile->IssueMessage(cmake::LOG, msg.str());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user