Commit 27fdfd75 authored by Davis King's avatar Davis King

Changed to avoid warnings in valgrind about invalid reads.

The manpages seemed to indicate that the previous code was
correct so I'm not sure if this was a bug or not.  It's been
in dlib for years without causing trouble though.
parent 7b138433
...@@ -151,9 +151,9 @@ namespace dlib ...@@ -151,9 +151,9 @@ namespace dlib
const std::wstring convert_mbstring_to_wstring(const std::string &src) const std::wstring convert_mbstring_to_wstring(const std::string &src)
{ {
std::vector<wchar_t> wstr(src.length()+1); std::vector<wchar_t> wstr(src.length()+5);
std::mbstowcs(&wstr.front(), src.c_str(), src.length()+1); std::mbstowcs(&wstr[0], src.c_str(), src.length()+1);
return std::wstring(&wstr.front()); return std::wstring(&wstr[0]);
} }
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment