Skip to content
Snippets Groups Projects
Commit 671092bc authored by Andrew A. de Laix's avatar Andrew A. de Laix
Browse files

Strip invalid characters from log files before adding into crash log llsd.

parent 29c068af
No related branches found
No related tags found
No related merge requests found
...@@ -255,7 +255,7 @@ void LLCrashLogger::gatherFiles() ...@@ -255,7 +255,7 @@ void LLCrashLogger::gatherFiles()
trimSLLog(crash_info); 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. // Add minidump as binary.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment