narrow down multi-channel tracks
[ardour.git] / libs / pbd / epa.cc
index 3d3f7477d7dfe56151a809b52398fed86698b1b1..8b8a23491b0d78131a82b37c283270eefd5432c4 100644 (file)
@@ -18,7 +18,6 @@
 */
 
 #include <cstdlib>
-#include <iostream>
 
 #include "pbd/epa.h"
 #include "pbd/strsplit.h"
@@ -115,7 +114,29 @@ EnvironmentalProtectionAgency::save ()
 void
 EnvironmentalProtectionAgency::restore () const
 {
+               clear ();
+
         for (map<string,string>::const_iterator i = e.begin(); i != e.end(); ++i) {
                 setenv (i->first.c_str(), i->second.c_str(), 1);
         }
-}                         
+} 
+
+void
+EnvironmentalProtectionAgency::clear () const
+{
+        char** the_environ = environ;
+
+        for (size_t i = 0; the_environ[i]; ++i) {
+                       
+                string estring = the_environ[i];
+                string::size_type equal = estring.find_first_of ('=');
+                       
+                if (equal == string::npos) {
+                        /* say what? an environ value without = ? */
+                        continue;
+                }
+                       
+                string before = estring.substr (0, equal);
+                unsetenv(before.c_str());
+        }
+}