port libupnp to buildroot-ng

git-svn-id: svn://svn.openwrt.org/openwrt/packages@4222 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico
2006-07-22 22:45:14 +00:00
parent 659e51c125
commit caa3b28d03
3 changed files with 397 additions and 0 deletions

View File

@ -0,0 +1,17 @@
Index: libupnp-1.2.1a/ixml/src/element.c
===================================================================
--- libupnp-1.2.1a.orig/ixml/src/element.c
+++ libupnp-1.2.1a/ixml/src/element.c
@@ -454,9 +454,9 @@ ixmlElement_removeAttributeNode( IN IXML
element->n.firstAttr = nextSib;
}
- ( IXML_Attr * ) attrNode->parentNode = NULL;
- ( IXML_Attr * ) attrNode->prevSibling = NULL;
- ( IXML_Attr * ) attrNode->nextSibling = NULL;
+ attrNode->parentNode = NULL;
+ attrNode->prevSibling = NULL;
+ attrNode->nextSibling = NULL;
*rtAttr = ( IXML_Attr * ) attrNode;
return IXML_SUCCESS;