diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-27 11:59:55 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-27 11:59:55 -0800 |
commit | 73665e5ad68ebbe2a6058128f92d251da4cd9d3b (patch) | |
tree | ccda2cc954c9009bcc3c7b12a449157c0bfbb781 /indra/llplugin | |
parent | f714e527c57741a6e60fe4bf5fa242b5d8e3d861 (diff) |
CID-1
Checker: BAD_COMPARE
Function: checkExceptionHandler()
File: /indra/llplugin/slplugin/slplugin.cpp
(not a bug, but rearranged a little)
Diffstat (limited to 'indra/llplugin')
-rw-r--r-- | indra/llplugin/slplugin/slplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llplugin/slplugin/slplugin.cpp b/indra/llplugin/slplugin/slplugin.cpp index 23dc532ba5..77240ce546 100644 --- a/indra/llplugin/slplugin/slplugin.cpp +++ b/indra/llplugin/slplugin/slplugin.cpp @@ -156,7 +156,7 @@ bool checkExceptionHandler() if (prev_filter == NULL) { ok = FALSE; - if (myWin32ExceptionHandler == NULL) + if (NULL == myWin32ExceptionHandler) { LL_WARNS("AppInit") << "Exception handler uninitialized." << LL_ENDL; } |