In this section:
This problem occurs when an attempt is made to dereference a pointer that points to a block of memory that has been freed.
|
The following code attempts to use a piece of dynamically allocated memory after it has already been freed.
/* * File: writdngl.c */ #include <stdlib.h> main() { char *a = (char *)malloc(10); free(a); *a = 'x'; return (0); } |
[writdngl.c:11] **WRITE_DANGLING** >> *a = 'x'; Writing to a dangling pointer: a Pointer:0x000173e8 In block:0x000173e8 thru 0x000173f1 (10 bytes) block allocated at: malloc() (interface) main() writdngl.c, 8 Stack trace where memory was freed: main() writdngl.c, 10 Stack trace where the error occurred: main() writdngl.c, 11 **Memory corrupted. Program may crash!!** |
Check that the de-allocation that occurs at the indicated location should indeed have taken place. Also check that the pointer you are using should really be pointing to a block allocated at the indicated place.