Is there any advantage to calling release over simply calling delete?

For example:

char *pMsg = XMLString::transcode(m_Node->getNodeValue());
XMLString::release(&pMsg);

versus

char *pMsg = XMLString::transcode(m_Node->getNodeValue());
delete []pMsg;




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to