forked from amazingfate/loongoffice
coverity seems to think that code execution can continue after a coverity test fails, but it will effectively halt and not trundle into the dereference of the tested-for-NULL pointer, try a [+kill] on the fail method Change-Id: I07c9a074b5681c367a31637c8af78d52a9c88d59
12 lines
309 B
Diff
12 lines
309 B
Diff
--- misc/cppunit-1.13.1/src/cppunit/Asserter.cpp
|
|
+++ misc/build/cppunit-1.13.1/src/cppunit/Asserter.cpp
|
|
@@ -13,7 +13,7 @@
|
|
fail( Message( "assertion failed", message ), sourceLine );
|
|
}
|
|
|
|
-
|
|
+// coverity[+kill]
|
|
void
|
|
Asserter::fail( const Message &message,
|
|
const SourceLine &sourceLine )
|