summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2014-05-22 20:53:06 +0200
committerJens Georg <mail@jensge.org>2014-05-22 20:53:41 +0200
commit61e4a2a287e5fa973161740ecc68227c3aeb5396 (patch)
tree27ea95f41c98704f81d95bcbeba7f2fa2b1bf175
parent158c1d13c0e2ce7b7459c951ea76f1ea5d839c60 (diff)
downloadgupnp-av-61e4a2a287e5fa973161740ecc68227c3aeb5396.tar.gz
Remove unused assignment
Coverity issue 60874 Signed-off-by: Jens Georg <mail@jensge.org> https://bugzilla.gnome.org/show_bug.cgi?id=730591
-rw-r--r--libgupnp-av/gupnp-media-collection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgupnp-av/gupnp-media-collection.c b/libgupnp-av/gupnp-media-collection.c
index 4385116..e00f82c 100644
--- a/libgupnp-av/gupnp-media-collection.c
+++ b/libgupnp-av/gupnp-media-collection.c
@@ -73,7 +73,7 @@ reparent_children (GUPnPMediaCollection *collection)
node = gupnp_didl_lite_object_get_xml_node
(GUPNP_DIDL_LITE_OBJECT (it->data));
xmlUnlinkNode (node);
- node = xmlAddChild (container_node, node);
+ xmlAddChild (container_node, node);
it = it->prev;
}