]> git.sesse.net Git - movit/blobdiff - effect_chain.cpp
Use thread-local locale.
[movit] / effect_chain.cpp
index 0a01bd356e6066261910a60e4ee2af2813d428f5..81613e69fba3c602ad9116b4b66e6f0cc8a239c5 100644 (file)
@@ -1332,7 +1332,8 @@ void EffectChain::finalize()
 {
        // Save the current locale, and set it to C, so that we can output decimal
        // numbers with printf and be sure to get them in the format mandated by GLSL.
-       char *saved_locale = setlocale(LC_NUMERIC, "C");
+       locale_t c_locale = newlocale(LC_NUMERIC_MASK, "C", (locale_t)0);
+       locale_t saved_locale = uselocale(c_locale);
 
        // Output the graph as it is before we do any conversions on it.
        output_dot("step0-start.dot");
@@ -1396,7 +1397,8 @@ void EffectChain::finalize()
        assert(phases[0]->inputs.empty());
        
        finalized = true;
-       setlocale(LC_NUMERIC, saved_locale);
+       uselocale(saved_locale);
+       freelocale(c_locale);
 }
 
 void EffectChain::render_to_fbo(GLuint dest_fbo, unsigned width, unsigned height)