Details
Description
In DOMElementNSImpl::setPrefix(const XMLCh *prefix), the following code: if (prefix == 0 || *prefix == 0)
{ fName = fLocalName; return; }seems like it should also set fPrefix to NULL. The following sequence: curnode->setPrefix(NULL); pref = curnode->getPrefix(); does not necessarily result in pref == NULL. Thanks!