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;
|
cmOStringStream msg;
|
||||||
msg << "Variable \"" << variable.c_str() << "\" was accessed using "
|
msg << "Variable \"" << variable.c_str() << "\" was accessed using "
|
||||||
<< accessString << " with value \"" << newValue << "\".";
|
<< accessString << " with value \"" << (newValue?newValue:"") << "\".";
|
||||||
makefile->IssueMessage(cmake::LOG, msg.str());
|
makefile->IssueMessage(cmake::LOG, msg.str());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user