Download CS240 Programming in C

Transcript
Wild Frees
Example:
int q;
int * p = &q;
free(p);
// p points to an object without
// header. Free will crash or
// it will corrupt the free list.
Related documents