fix verbose plugin scan
[ardour.git] / gtk2_ardour / bundle_env_cocoa.cc
index 1f55b10954e11478ceb522a28a4459e832bced17..fafa1893bd3995ed6ef1a1ee44d2ef21a60f6d4d 100644 (file)
@@ -76,7 +76,7 @@ fixup_bundle_environment (int, char* [], string & localedir)
 
 #ifdef ENABLE_NLS
        if (!ARDOUR::translations_are_enabled ()) {
-               (*localedir) = "/this/cannot/exist";
+               localedir = "/this/cannot/exist";
        } else {
                /* force localedir into the bundle */
                
@@ -84,7 +84,7 @@ fixup_bundle_environment (int, char* [], string & localedir)
                lpath.push_back (bundle_dir);
                lpath.push_back ("Resources");
                lpath.push_back ("locale");
-               localedir = strdup (Glib::build_filename (lpath).c_str());
+               localedir = Glib::build_filename (lpath).c_str();
        }
 #endif