Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
bc6070bd
Commit
bc6070bd
authored
11 years ago
by
Graham Madarasz
Browse files
Options
Downloads
Patches
Plain Diff
MAINT-2740 more comment grooming and NULL string guard
parent
1fcf5409
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/llcommon/llerror.cpp
+9
-4
9 additions, 4 deletions
indra/llcommon/llerror.cpp
indra/llcommon/llerror.h
+1
-1
1 addition, 1 deletion
indra/llcommon/llerror.h
with
10 additions
and
5 deletions
indra/llcommon/llerror.cpp
+
9
−
4
View file @
bc6070bd
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
indra/llcommon/llerror.h
+
1
−
1
View file @
bc6070bd
...
@@ -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)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment