Dynamically allocated storage, for example from new or malloc, must be freed only once.
ID |
Observation |
Description |
---|---|---|
1 |
Deallocation site |
Second of two places where that storage was freed. This is where the error occurred. |
2 |
Deallocation site |
Places where the storage was freed earlier. Note that the pointer provided at the first deallocation may differ from that provided at the second deallocation. This can happen when pointers are assigned to one another. |
Copyright © 2010, Intel Corporation. All rights reserved.