ot;Florian
Brugger" To: <[EMAIL PROTECTED]>
Subject: problem deleting memory
a
Florian Brugger wrote:
> Deleting memory allocated by transcode does not seem to work for me:
This is a FAQ:
http://xml.apache.org/xerces-c/faq-parse.html#faq-26
Joachim
--
work: [EMAIL PROTECTED] (http://www.netacquire.com)
private: [EMAIL PROTECTED] (http://www.kraut.ca)
Deleting memory allocated by transcode does not seem to work for me:
DOMString string ("test");
char *ptr = string.transcode ();
delete [] ptr;
delete [] ptr causes a crash. Note that ptr does actually point to a char
array containing "test".
What am I doing wrong?
Thank you for your help,
Fl