You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/testnullpointer.cpp
+53Lines changed: 53 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4468,6 +4468,59 @@ class TestNullPointer : public TestFixture {
4468
4468
"[test.cpp:3:13]: (warning) If resource allocation fails, then there is a possible null pointer dereference: fid [nullPointerOutOfResources]\n"
4469
4469
"[test.cpp:4:12]: (warning) If resource allocation fails, then there is a possible null pointer dereference: fid [nullPointerOutOfResources]\n",
4470
4470
errout_str());
4471
+
4472
+
// the guard might call an unknown, possibly noreturn function -> no warning
4473
+
check("void f() {\n"
4474
+
" FILE* fid = fopen(\"x.txt\", \"w\");\n"
4475
+
" if (fid == NULL)\n"
4476
+
" g();\n"
4477
+
" fclose(fid);\n"
4478
+
"}\n");
4479
+
ASSERT_EQUALS("", errout_str());
4480
+
4481
+
// .. but an inconclusive warning is reported with --inconclusive
4482
+
check("void f() {\n"
4483
+
" FILE* fid = fopen(\"x.txt\", \"w\");\n"
4484
+
" if (fid == NULL)\n"
4485
+
" g();\n"
4486
+
" fclose(fid);\n"
4487
+
"}\n",
4488
+
dinit(CheckOptions, $.inconclusive = true));
4489
+
ASSERT_EQUALS(
4490
+
"[test.cpp:5:12]: (warning, inconclusive) If resource allocation fails, then there is a possible null pointer dereference: fid [nullPointerOutOfResources]\n",
4491
+
errout_str());
4492
+
4493
+
check("int f(const int* p) {\n"
4494
+
" if (p == nullptr)\n"
4495
+
" g();\n"
4496
+
" return *p;\n"
4497
+
"}\n",
4498
+
dinit(CheckOptions, $.inconclusive = true));
4499
+
ASSERT_EQUALS(
4500
+
"[test.cpp:2:11] -> [test.cpp:4:13]: (warning, inconclusive) Either the condition 'p==nullptr' is redundant or there is possible null pointer dereference: p. [nullPointerRedundantCheck]\n",
4501
+
errout_str());
4502
+
4503
+
check("void f() {\n"
4504
+
" FILE* fid = fopen(\"x.txt\", \"w\");\n"
4505
+
" if (fid != NULL)\n"
4506
+
" ;\n"
4507
+
" else\n"
4508
+
" g();\n"
4509
+
" fclose(fid);\n"
4510
+
"}\n");
4511
+
ASSERT_EQUALS("", errout_str());
4512
+
4513
+
// guard function is known to return -> warning
4514
+
check("void g() {}\n"
4515
+
"void f() {\n"
4516
+
" FILE* fid = fopen(\"x.txt\", \"w\");\n"
4517
+
" if (fid == NULL)\n"
4518
+
" g();\n"
4519
+
" fclose(fid);\n"
4520
+
"}\n");
4521
+
ASSERT_EQUALS(
4522
+
"[test.cpp:6:12]: (warning) If resource allocation fails, then there is a possible null pointer dereference: fid [nullPointerOutOfResources]\n",
0 commit comments