Browse Source

Fix bug in trying to set stding with null

pull/1/head
Andy Cedilnik 23 years ago
parent
commit
5897d078c6
  1. 4
      Source/cmSourceFile.cxx

4
Source/cmSourceFile.cxx

@ -161,6 +161,10 @@ void cmSourceFile::SetProperty(const char* prop, const char* value)
{
return;
}
if (!value)
{
value = "NOTFOUND";
}
m_Properties[prop] = value;
}

Loading…
Cancel
Save