Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I simply cant delete my wchar_t pointer variable. it gets initialized in the constructor by:

dir = new wchar_t;

and shouldn't I be able to delete it by:

delete dir;

The Reason for this problem seems to be an debug assertion fail.
Expression _CrtIsValidHeapPointer(pUserData)

share|improve this question
5  
We will need more info to ascertain what your problem is, before we can suggest a solution. What you described is certainly possible. – R. Martinho Fernandes Nov 20 '12 at 13:04
Yes, like what exactly prevents you from deleting it? – Michael Krelin - hacker Nov 20 '12 at 13:05
3  
You are using exactly ONE wchar_t? Are you sure that dir is never two or more wide characters? – MSalters Nov 20 '12 at 13:09
1  
what is dir type? try: wchar_t* dir = new wchar_t; delete dir; – spin_eight Nov 20 '12 at 13:10
1  
How can you tell that you can't delete it? Is an error thrown, or something? – Rook Nov 20 '12 at 13:10
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.