diff options
author | Andrew A. de Laix <alain@lindenlab.com> | 2010-06-03 13:22:50 -0700 |
---|---|---|
committer | Andrew A. de Laix <alain@lindenlab.com> | 2010-06-03 13:22:50 -0700 |
commit | 671092bcbc1a565e8b1cd140d005f246d325adc7 (patch) | |
tree | ef876e6f303835193fe33fa45729e9c76d850a59 /indra/llcrashlogger | |
parent | 29c068afc3779f58fa39f16ef9ddd7a9da29988b (diff) |
Strip invalid characters from log files before adding into crash log llsd.
Diffstat (limited to 'indra/llcrashlogger')
-rwxr-xr-x | 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 078795f962..51e5f14bfe 100755 --- a/indra/llcrashlogger/llcrashlogger.cpp +++ b/indra/llcrashlogger/llcrashlogger.cpp @@ -255,7 +255,7 @@ void LLCrashLogger::gatherFiles() trimSLLog(crash_info); } - mCrashInfo[(*itr).first] = rawstr_to_utf8(crash_info); + mCrashInfo[(*itr).first] = LLStringFn::strip_invalid_xml(rawstr_to_utf8(crash_info)); } // Add minidump as binary. |