From b466a5c9a9f1147da9f3c0e5970c740b62e142f5 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 27 Jun 2013 13:24:55 +0000 Subject: Fix #35890: memory leak in OS X ghost locale detection. --- intern/locale/boost_locale_wrapper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intern/locale') diff --git a/intern/locale/boost_locale_wrapper.cpp b/intern/locale/boost_locale_wrapper.cpp index 3492ec05e82..5d7ba599467 100644 --- a/intern/locale/boost_locale_wrapper.cpp +++ b/intern/locale/boost_locale_wrapper.cpp @@ -65,8 +65,8 @@ void bl_locale_set(const char *locale) } else { #ifdef __APPLE__ - extern const char *user_locale; // pulled from Ghost_SystemCocoa - std::string locale_osx = user_locale + std::string(".UTF-8"); + extern char GHOST_user_locale[128]; // pulled from Ghost_SystemCocoa + std::string locale_osx = GHOST_user_locale + std::string(".UTF-8"); _locale = gen(locale_osx.c_str()); #else _locale = gen(""); -- cgit v1.2.3