diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2017-08-30 17:44:21 +0300 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2017-08-30 17:44:21 +0300 |
commit | 9d9c04b0448e33b104f6e5b5cb1aea3df63bca9d (patch) | |
tree | 8a93dfa1deccdecc8318e4c8042613dc1249212b /indra/llcrashlogger/llcrashlogger.cpp | |
parent | bcb3bea0a9fe610e8007e67b6ad26ae10f4cb431 (diff) |
MAINT-7691 One more crashreported issue with unicode in windows
Diffstat (limited to 'indra/llcrashlogger/llcrashlogger.cpp')
-rw-r--r-- | indra/llcrashlogger/llcrashlogger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcrashlogger/llcrashlogger.cpp b/indra/llcrashlogger/llcrashlogger.cpp index d8365eed94..1d58dba9ab 100644 --- a/indra/llcrashlogger/llcrashlogger.cpp +++ b/indra/llcrashlogger/llcrashlogger.cpp @@ -462,7 +462,7 @@ bool LLCrashLogger::sendCrashLog(std::string dump_dir) updateApplication("Sending reports..."); - std::ofstream out_file(report_file.c_str()); + llofstream out_file(report_file.c_str()); LLSDSerialize::toPrettyXML(post_data, out_file); out_file.flush(); out_file.close(); |