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 0d1884d commit 8d594dbCopy full SHA for 8d594db
cpp/ql/test/query-tests/Security/CWE/CWE-570/test.cpp
@@ -230,6 +230,6 @@ void good_new_catch_exception_in_conversion() {
230
void *operator new(std::size_t, int n, const std::nothrow_t &);
231
232
void test_operator_new_without_exception_spec() {
233
- int* p = new(42, std::nothrow) int; // GOOD [FALSE POSITIVE]
+ int* p = new(42, std::nothrow) int; // GOOD
234
if(p == nullptr) {}
235
}
0 commit comments