...
Code Block | ||
---|---|---|
| ||
unsigned int *ptr = (unsigned int *) 0xcfcfcfcf; |
Risk
...
Assessment
Converting from pointer to integer or vice versa results in unportable code and may create unexpected pointers to invalid memory locations.
...
...
Code Block | ||
---|---|---|
| ||
unsigned int *ptr = (unsigned int *) 0xcfcfcfcf; |
...
Converting from pointer to integer or vice versa results in unportable code and may create unexpected pointers to invalid memory locations.
...