X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fpbd%2Fepa.cc;h=0fc386072fa72c7e4deafeaf5f2151e70b5ffd4a;hb=289078f7f8224ec72fb23d81b0e2b53a09611cfa;hp=1a27a436a6dbad64dc6b387cc013c4da0f4d59ff;hpb=b855e5f3220027502a3c88f189d511fe2a5a3c2b;p=ardour.git diff --git a/libs/pbd/epa.cc b/libs/pbd/epa.cc index 1a27a436a6..0fc386072f 100644 --- a/libs/pbd/epa.cc +++ b/libs/pbd/epa.cc @@ -131,19 +131,26 @@ EnvironmentalProtectionAgency::restore () const void EnvironmentalProtectionAgency::clear () const { - char** the_environ = environ; + /* Copy the environment before using (g_)unsetenv() because on some + platforms (maybe all?) this directly modifies the environ array, + cause complications for iterating through it. + */ - for (size_t i = 0; the_environ[i]; ++i) { - - string estring = the_environ[i]; - string::size_type equal = estring.find_first_of ('='); + vector ecopy; + + for (size_t i = 0; environ[i]; ++i) { + ecopy.push_back (environ[i]); + } + + for (vector::const_iterator e = ecopy.begin(); e != ecopy.end(); ++e) { + string::size_type equal = (*e).find_first_of ('='); if (equal == string::npos) { /* say what? an environ value without = ? */ continue; } - string before = estring.substr (0, equal); - g_unsetenv(before.c_str()); + string var_name = (*e).substr (0, equal); + g_unsetenv(var_name.c_str()); } -} +}