Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ddac74 commit 81d06e2Copy full SHA for 81d06e2
1 file changed
cpp/ql/test/query-tests/Likely Bugs/Memory Management/PointerOverflow/no_strict_overflow.c
@@ -2,5 +2,5 @@
2
3
int not_in_range_nostrict(int *ptr, int *ptr_end, unsigned int a) {
4
return ptr + a < ptr_end || // GOOD (for the purpose of this test)
5
- ptr + a < ptr; // GOOD (due to compiler options) [FALSE POSITIVE]
+ ptr + a < ptr; // GOOD (due to compiler options)
6
}
0 commit comments