aboutsummaryrefslogtreecommitdiff
path: root/src/utiltime.cpp
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2016-11-27 15:11:49 -0800
committerMatt Corallo <git@bluematt.me>2016-11-27 15:36:44 -0800
commit507145d78595e052ce13368e122f72c85093992c (patch)
tree5e4039d86ce050646522c7f4f363f243b710ce91 /src/utiltime.cpp
parent76fec09d878d6dbf214bdb6228d480bd9195db4c (diff)
downloadbitcoin-507145d78595e052ce13368e122f72c85093992c.tar.xz
Fix race when accessing std::locale::classic()
See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78552
Diffstat (limited to 'src/utiltime.cpp')
-rw-r--r--src/utiltime.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utiltime.cpp b/src/utiltime.cpp
index da590f8889..51d545ef8a 100644
--- a/src/utiltime.cpp
+++ b/src/utiltime.cpp
@@ -74,8 +74,9 @@ void MilliSleep(int64_t n)
std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime)
{
+ static std::locale classic(std::locale::classic());
// std::locale takes ownership of the pointer
- std::locale loc(std::locale::classic(), new boost::posix_time::time_facet(pszFormat));
+ std::locale loc(classic, new boost::posix_time::time_facet(pszFormat));
std::stringstream ss;
ss.imbue(loc);
ss << boost::posix_time::from_time_t(nTime);