diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2018-07-11 21:52:03 -0400 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2018-07-11 21:52:03 -0400 | 
| commit | c7616af624f784e6226f530f6a21b3541ba730cc (patch) | |
| tree | 7b2f1b43bf5fd4c707cd27e71de5068187f57554 /indra | |
| parent | 869d2f1fb2ed59e65dd9cb8b75a9ea560dbeab2d (diff) | |
DRTVWR-447: Diagnostically try naively widening BugSplat metadata.
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llappviewerwin32.cpp | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/indra/newview/llappviewerwin32.cpp b/indra/newview/llappviewerwin32.cpp index 43b25699ca..b78d6bdc62 100644 --- a/indra/newview/llappviewerwin32.cpp +++ b/indra/newview/llappviewerwin32.cpp @@ -104,7 +104,11 @@ namespace      // specific wstringize() overload      inline std::basic_string<__wchar_t> wunder(const std::string& str)      { -        return wunder(wstringize(str)); +//      return wunder(wstringize(str)); +        // Is wstringize(const std::string&) doing the right thing? Try +        // widening each character individually -- which works only for 8-bit +        // characters, of course -- just diagnostically. +        return { str.begin(), str.end() };      }      // Irritatingly, MiniDmpSender::setCallback() is defined to accept a | 
