I had to port a small C# app to Palm OS so I used C++ with CW 9.3. Everything 
works fine except deleting allocated arrays. I suspected pointer corruption, 
but even if I try deleting my array right after creating it, I still get an 
Invalid Chunk Ptr error:

Vector *gr = new Vector[ num ];  // num is 56
delete gr;  // fails!

Ironically, if I don't delete it, I get a memory leak when exiting the app.

What's wrong with delete?


Luc Le Blanc

-- 
For information on using the ACCESS Developer Forums, or to unsubscribe, please 
see http://www.access-company.com/developers/forums/

Reply via email to