...
Code Block | ||
---|---|---|
| ||
int function(int,int,int); ... function(1,2); ... int func(int one, int two, int three){ printf("%d %d %d", one, two, three); return 1; } |
Non-Compliant Code Example 2
Code Block | ||
---|---|---|
| ||
function(1, 2);
...
int func(int one, int two, int three){
printf("%d %d %d", one, two, three);
return 1;
}
|
Examples of vulnerabilities with CVE entry number
...