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:
parent
f9bb20fe2b
commit
b86e37c84f
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue