mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 22:50:26 -06:00
ERR: Fix crash of cmake on broken load commands
This commit is contained in:
@@ -206,10 +206,11 @@ bool cmLoadCommandCommand::InitialPass(std::vector<std::string> const& args)
|
||||
{
|
||||
std::string err = "Attempt to load the library ";
|
||||
err += fullPath + " failed.";
|
||||
if ( cmDynamicLoader::LastError() )
|
||||
const char* error = cmDynamicLoader::LastError();
|
||||
if ( error )
|
||||
{
|
||||
err += " Additional error info is:\n";
|
||||
err += cmDynamicLoader::LastError();
|
||||
err += error;
|
||||
}
|
||||
this->SetError(err.c_str());
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user