execute_process: Manage KWSys Process lifetime with unique_ptr

This commit is contained in:
Brad King 2019-04-19 13:31:52 -04:00
parent a289d79517
commit d350fb6889

View File

@ -119,7 +119,9 @@ bool cmExecuteProcessCommand::InitialPass(std::vector<std::string> const& args,
}
// Create a process instance.
cmsysProcess* cp = cmsysProcess_New();
std::unique_ptr<cmsysProcess, void (*)(cmsysProcess*)> cp_ptr(
cmsysProcess_New(), cmsysProcess_Delete);
cmsysProcess* cp = cp_ptr.get();
// Set the command sequence.
for (std::vector<std::string> const& cmd : arguments.Commands) {
@ -297,9 +299,6 @@ bool cmExecuteProcessCommand::InitialPass(std::vector<std::string> const& args,
}
}
// Delete the process instance.
cmsysProcess_Delete(cp);
return true;
}