Skip to content
Snippets Groups Projects
Commit 8bbd089b authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Attempt to supress coverity false positive

parent cef7ca99
No related branches found
No related tags found
No related merge requests found
......@@ -417,11 +417,12 @@ typedef LLError::NoClassInfo _LL_CLASS_TO_LOG;
#define LL_NEWLINE '\n'
// Use this only in LL_ERRS or in a place that LL_ERRS may not be used
#define LLERROR_CRASH \
{ \
int* make_me_crash = NULL;\
*make_me_crash = 0; \
exit(*make_me_crash); \
#define LLERROR_CRASH \
{ \
int* make_me_crash = NULL; \
/* coverity[var_deref_op] */ \
*make_me_crash = 0; \
exit(*make_me_crash); \
}
#define LL_ENDL \
......
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