In one of my objects, I create an unsigned character array member to store some image data:
unsigned char* imageData;
and in the constructor I initialize it with new:
MyObject::MyObject()
{
int imageSize = 6054400;
imageData = new unsigned char[imageSize];
}
imageData gets filled throughout the course of the loop.
This object (MyObject) won't get deleted until the very end of the loop, but I need imageData to be deleted midway through the loop. So I just created this function:
void MyObject::DeleteAllMembers
{
delete [] imageData;
}
and I call it at the end of the loop:
theObj.DeleteAllMembers();
The problem is that every time my program gets to the line of code:
delete [] imageData;
it crashes, leaving this error message:

At this point I have no idea why this is happening.
Some of the things I've tried have been:
- initializing imageData with imageSize+1 instead of just imageSize
- moving the delete command to the destructor and manually deleting the object each run through the loop
- using delete imageData instead of delete [] imageData, even though I'm fairly sure that I need to use delete []
- I've tried doing
imageData = 0after deleting it, unfortunately my program still crashes at thedelete [] imageDataline. - I've tried using
memset(&imageData, 0, imageSize);, but that gave me an access violation error.
Each time, the program still crashes at that same line. I know someone is looking at my code thinking "You moron, all you have to do is __________." Can someone please tell me what I'm doing wrong?
EDIT: Sorry I said something incorrect. I create this object each time at the beginning of the loop and it gets deleted at the end of the loop, I don't know why i said at the beginning and end of the program.

theObj.DeleteAllMembers;does not invokeDeleteAllMembers. You needtheObj.DeleteAllMembers(). – Robᵩ Feb 11 at 14:55