diff --git a/Source/cmMacroCommand.cxx b/Source/cmMacroCommand.cxx index cb0b7bd36..db4a4d6a3 100644 --- a/Source/cmMacroCommand.cxx +++ b/Source/cmMacroCommand.cxx @@ -235,13 +235,14 @@ bool cmMacroHelperCommand::InvokeInitialPass } if(!this->Makefile->ExecuteCommand(newLFF)) { - if(!args[0].FilePath) + const char* filePath = args[0].FilePath; + if(!filePath) { - args[0].FilePath = "Unknown"; + filePath = "Unknown"; } cmOStringStream error; error << "Error in cmake code at\n" - << args[0].FilePath << ":" << args[0].Line << ":\n" + << filePath << ":" << args[0].Line << ":\n" << "A command failed during the invocation of macro \"" << this->Args[0].c_str() << "\"."; cmSystemTools::Error(error.str().c_str());