C++: Address review comments

This commit is contained in:
Jeroen Ketema
2024-11-12 10:13:37 +01:00
parent a29b958f5f
commit 79a9e9c6c0

View File

@@ -110,6 +110,6 @@ void test13(char *x) {
void inspect(char *x);
void test14(char *x) {
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
inspect(x), free(x);
}