Trimmed off the newline from sw_vers output on mac, it could cause xml parsing errors if left in
This commit is contained in:
parent
f3a0fba75e
commit
2af045dfc5
|
@ -243,6 +243,7 @@ protected:
|
||||||
// For Mac
|
// For Mac
|
||||||
bool ParseSysCtl();
|
bool ParseSysCtl();
|
||||||
void CallSwVers();
|
void CallSwVers();
|
||||||
|
void TrimNewline(kwsys_stl::string&);
|
||||||
kwsys_stl::string ExtractValueFromSysCtl(const char* word);
|
kwsys_stl::string ExtractValueFromSysCtl(const char* word);
|
||||||
kwsys_stl::string SysCtlBuffer;
|
kwsys_stl::string SysCtlBuffer;
|
||||||
|
|
||||||
|
@ -3390,6 +3391,7 @@ void SystemInformationImplementation::CallSwVers()
|
||||||
args.push_back("-productName");
|
args.push_back("-productName");
|
||||||
args.push_back(0);
|
args.push_back(0);
|
||||||
output = this->RunProcess(args);
|
output = this->RunProcess(args);
|
||||||
|
this->TrimNewline(output);
|
||||||
this->OSName = output;
|
this->OSName = output;
|
||||||
args.clear();
|
args.clear();
|
||||||
|
|
||||||
|
@ -3397,6 +3399,7 @@ void SystemInformationImplementation::CallSwVers()
|
||||||
args.push_back("-productVersion");
|
args.push_back("-productVersion");
|
||||||
args.push_back(0);
|
args.push_back(0);
|
||||||
output = this->RunProcess(args);
|
output = this->RunProcess(args);
|
||||||
|
this->TrimNewline(output);
|
||||||
this->OSRelease = output;
|
this->OSRelease = output;
|
||||||
args.clear();
|
args.clear();
|
||||||
|
|
||||||
|
@ -3404,10 +3407,28 @@ void SystemInformationImplementation::CallSwVers()
|
||||||
args.push_back("-buildVersion");
|
args.push_back("-buildVersion");
|
||||||
args.push_back(0);
|
args.push_back(0);
|
||||||
output = this->RunProcess(args);
|
output = this->RunProcess(args);
|
||||||
|
this->TrimNewline(output);
|
||||||
this->OSVersion = output;
|
this->OSVersion = output;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void SystemInformationImplementation::TrimNewline(kwsys_stl::string& output)
|
||||||
|
{
|
||||||
|
// remove \r
|
||||||
|
kwsys_stl::string::size_type pos=0;
|
||||||
|
while((pos = output.find("\r", pos)) != kwsys_stl::string::npos)
|
||||||
|
{
|
||||||
|
output.erase(pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
// remove \n
|
||||||
|
pos = 0;
|
||||||
|
while((pos = output.find("\n", pos)) != kwsys_stl::string::npos)
|
||||||
|
{
|
||||||
|
output.erase(pos);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/** Return true if the machine is 64 bits */
|
/** Return true if the machine is 64 bits */
|
||||||
bool SystemInformationImplementation::Is64Bits()
|
bool SystemInformationImplementation::Is64Bits()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue