From 6931c51449b062c76ac88dfd5bdf7ceac1600dc4 Mon Sep 17 00:00:00 2001 From: Scott Cantor Date: Sun, 4 Jan 2015 22:39:16 +0000 Subject: [PATCH] Fix a bug affecting newer boost --- xmltooling/io/HTTPResponse.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xmltooling/io/HTTPResponse.cpp b/xmltooling/io/HTTPResponse.cpp index c49c9a8..29623cc 100644 --- a/xmltooling/io/HTTPResponse.cpp +++ b/xmltooling/io/HTTPResponse.cpp @@ -64,8 +64,9 @@ void HTTPResponse::sanitizeURL(const char* url) if (!ch) throw IOException("URL is malformed."); string s(url, ch - url); + std::locale loc; vector::const_iterator i = - find_if(m_allowedSchemes.begin(), m_allowedSchemes.end(), boost::bind(fn, boost::cref(s), _1, boost::cref(std::locale()))); + find_if(m_allowedSchemes.begin(), m_allowedSchemes.end(), boost::bind(fn, boost::cref(s), _1, boost::cref(loc))); if (i != m_allowedSchemes.end()) return; -- 2.1.4