diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2017-08-31 20:26:25 +0300 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2017-08-31 20:26:25 +0300 |
commit | bf1af55a060b25e2de291c66a4d848dd969729ed (patch) | |
tree | 13a815da5e750e46076c280125b5d92bc96190f6 /indra/newview | |
parent | cba6748701a8f6bbbfc8631c0ccb0a5027ae935b (diff) |
MAINT-7691 Crashreported sometimes not starting from unicode named folders
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llappviewerwin32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappviewerwin32.cpp b/indra/newview/llappviewerwin32.cpp index 5107030476..4268ecd91e 100644 --- a/indra/newview/llappviewerwin32.cpp +++ b/indra/newview/llappviewerwin32.cpp @@ -694,7 +694,7 @@ void LLAppViewerWin32::initCrashReporting(bool reportFreeze) PROCESS_INFORMATION processInfo; std::wstring exe_wstr; - exe_wstr=wstringize(exe_path); + exe_wstr = utf8str_to_utf16str(exe_path); std::wstring arg_wstr; arg_wstr=wstringize(arg_str); |