mirror of
https://github.com/github/codeql.git
synced 2026-03-28 10:18:17 +01:00
8 lines
238 B
C++
8 lines
238 B
C++
typedef long long LONGLONG;
|
|
|
|
int f(unsigned int u, LONGLONG l) {
|
|
if(u > 0 || l >=0) //correct: unsigned value is check for > 0
|
|
return 23;
|
|
return u >= 0; //wrong: unsigned values are always greater than or equal to 0
|
|
}
|