util/signal_test.cc: suppress intentional null pointer deref

Add comment to enabele cppcheck suppression of intentional null
pointer deref via --inline-suppr option.

Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
This commit is contained in:
Danny Al-Gaaf 2014-09-29 23:00:18 +02:00
parent 33580fa39a
commit af8c2b2d97

View File

@ -9,6 +9,7 @@
namespace { namespace {
void f0() { void f0() {
char *p = nullptr; char *p = nullptr;
// cppcheck-suppress nullPointer
*p = 10; /* SIGSEGV here!! */ *p = 10; /* SIGSEGV here!! */
} }