We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a29b958 commit 79a9e9cCopy full SHA for 79a9e9c
cpp/ql/test/experimental/query-tests/Best Practices/GuardedFree/test.cpp
@@ -110,6 +110,6 @@ void test13(char *x) {
110
void inspect(char *x);
111
112
void test14(char *x) {
113
- if (x != nullptr) // GOOD [FALSE POSITIVE]: x might be accessed
+ if (x != nullptr) // GOOD [FALSE POSITIVE]: x might be accessed in the first operand of the comma operator
114
inspect(x), free(x);
115
}
0 commit comments