parent
d691732554
commit
bbe6d49b46
@ -255,6 +255,9 @@ Version 1.8.0
|
||||
Version 1.6.13
|
||||
*******************************************************************************
|
||||
|
||||
2011-03-08 Iain Denniston <iain.denniston(at)gmail.com>
|
||||
Fix for memory leak.
|
||||
|
||||
2011-03-08 Iain Denniston <iain.denniston(at)gmail.com>
|
||||
Fix and Update of MSVC9 solution and project files - now compile in all
|
||||
modes. Added x64 and static library targets.
|
||||
|
@ -272,6 +272,8 @@ int ixmlElement_setAttributeNode(
|
||||
}
|
||||
if (rtAttr != NULL) {
|
||||
*rtAttr = (IXML_Attr *)attrNode;
|
||||
} else {
|
||||
ixmlAttr_free((IXML_Attr *)attrNode);
|
||||
}
|
||||
} else {
|
||||
/* Add this attribute */
|
||||
|
@ -588,6 +588,8 @@ int ixmlNode_removeChild(
|
||||
oldChild->parentNode = NULL;
|
||||
if (returnNode != NULL) {
|
||||
*returnNode = oldChild;
|
||||
} else {
|
||||
ixmlNode_free(oldChild);
|
||||
}
|
||||
|
||||
return IXML_SUCCESS;
|
||||
|
Loading…
Reference in New Issue
Block a user