You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test.c: In function 'main':
test.c:8:5: warning: memory access might be invalid, could not infer information about pointer 'argv[1]'
printf("Hello, %s", argv[1]);
^
test.c: In function 'main':
test.c:8:25: warning: possible buffer overflow, pointer '&argv[1]' accesses 8 bytes at offset 8 bytes of 'argv'
printf("Hello, %s", argv[1]);
^
We need to model argc/argv properly to get rid of these warnings. This seems complicated to achieve for non-relational numerical domains.
The text was updated successfully, but these errors were encountered:
On the following example:
IKOS generates the following warnings:
We need to model
argc
/argv
properly to get rid of these warnings. This seems complicated to achieve for non-relational numerical domains.The text was updated successfully, but these errors were encountered: