mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-15 12:40:35 +00:00
Take into account that PATH could be empty
This commit is contained in:
parent
5cbafa276f
commit
0564b790e7
@ -2082,10 +2082,13 @@ bool Gnuplot::get_program_path()
|
||||
// Retrieves a C string containing the value of environment variable PATH
|
||||
path = std::getenv("PATH");
|
||||
std::stringstream s;
|
||||
s << path;
|
||||
if (s.fail())
|
||||
if (!path)
|
||||
{
|
||||
throw GnuplotException("Path is not set");
|
||||
s << path;
|
||||
}
|
||||
if (s.fail() or s.gcount() == 0)
|
||||
{
|
||||
throw GnuplotException("PATH is not set");
|
||||
}
|
||||
std::string path_str = s.str();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user