Skip to content
Snippets Groups Projects
Commit bc6070bd authored by Graham Madarasz's avatar Graham Madarasz
Browse files

MAINT-2740 more comment grooming and NULL string guard

parent 1fcf5409
No related branches found
No related tags found
No related merge requests found
...@@ -1402,15 +1402,20 @@ namespace LLError ...@@ -1402,15 +1402,20 @@ namespace LLError
#if LL_WINDOWS #if LL_WINDOWS
void LLOutputDebugUTF8(const std::string& s) void LLOutputDebugUTF8(const std::string& s)
{ {
// Be careful not to enable this in non-debug builds as there are bad interactions between the // Be careful when calling OutputDebugString as it throws DBG_PRINTEXCEPTION_C
// exceptions thrown by this function and the handling of stacks in coroutine fibers. BUG-2707 // which works just fine under the windows debugger, but can cause users who
// have enabled SEHOP exception chain validation to crash due to interactions
// between the Win 32-bit exception handling and boost coroutine fiber stacks. BUG-2707
// //
if (IsDebuggerPresent()) if (IsDebuggerPresent())
{ {
// Need UTF16 for Unicode OutputDebugString // Need UTF16 for Unicode OutputDebugString
// //
OutputDebugString(utf8str_to_utf16str(s).c_str()); if (s.size())
OutputDebugString(TEXT("\n")); {
OutputDebugString(utf8str_to_utf16str(s).c_str());
OutputDebugString(TEXT("\n"));
}
} }
} }
#endif #endif
......
...@@ -206,7 +206,7 @@ namespace LLError ...@@ -206,7 +206,7 @@ namespace LLError
} }
#if LL_WINDOWS #if LL_WINDOWS
// Macro accepting a const std::string& for display in windows debugging console in debug builds only // Macro accepting a std::string for display in windows debugging console
#define LL_WINDOWS_OUTPUT_DEBUG(a) LLError::LLOutputDebugUTF8(a) #define LL_WINDOWS_OUTPUT_DEBUG(a) LLError::LLOutputDebugUTF8(a)
#else #else
#define LL_WINDOWS_OUTPUT_DEBUG(a) #define LL_WINDOWS_OUTPUT_DEBUG(a)
......
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