Skip to content
Snippets Groups Projects
Commit df6f93a4 authored by Brad King's avatar Brad King Committed by Kitware Robot
Browse files

Merge topic 'RegularExpression-clang-analyzer'


199aa713 RegularExpression: Tell clang-analyzer that program memory is initialized

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !283
parents a3ff01ab 199aa713
No related branches found
No related tags found
1 merge request!283RegularExpression: Tell clang-analyzer that program memory is initialized
......@@ -378,6 +378,10 @@ bool RegularExpression::compile(const char* exp)
return false;
}
#ifdef __clang_analyzer__ /* Convince it that the program is initialized. */
memset(this->program, 0, comp.regsize);
#endif
// Second pass: emit code.
comp.regparse = exp;
comp.regnpar = 1;
......
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