mirror of
https://github.com/github/codeql.git
synced 2026-04-30 11:15:13 +02:00
Update test.cpp
This commit is contained in:
@@ -115,8 +115,8 @@ int functionWork2b_() {
|
||||
globalVala2 = a[0];
|
||||
return 0;
|
||||
}
|
||||
int functionWork3b(int i) {
|
||||
scanf("%i", &i); // BAD
|
||||
int functionWork3b(int * i) {
|
||||
scanf("%i", i); // BAD
|
||||
return 0;
|
||||
}
|
||||
int functionWork3() {
|
||||
|
||||
Reference in New Issue
Block a user