Crash when parsing an incorrect program with pointer to arrays
ID0001099: This issue was created automatically from Mantis Issue 1099. Further discussion may take place here.
Id | Project | Category | View | Due Date | Updated |
---|---|---|---|---|---|
ID0001099 | Frama-C | Kernel | public | 2012-02-18 | 2014-02-12 |
Reporter | yakobowski | Assigned To | virgile | Resolution | fixed |
Priority | low | Severity | crash | Reproducibility | always |
Platform | - | OS | - | OS Version | - |
Product Version | Frama-C Nitrogen-20111001 | Target Version | - | Fixed in Version | Frama-C Oxygen-20120901 |
Description :
frama-c crashes on the following program
typedef int t[10]; typedef int u[4];
void main () { int tab1[4]; u* p = &tab1; t* p2 = (t) p; }