gstxmlhelper: fix xmlOutputBufferFlush ignored ret
authorStéphane Cerveau <scerveau@collabora.com>
Mon, 9 Dec 2019 14:10:00 +0000 (15:10 +0100)
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Fri, 3 Jan 2020 20:50:27 +0000 (20:50 +0000)
fix CID #1456553

ext/dash/gstxmlhelper.c

index c59c57d..97adc6a 100644 (file)
@@ -982,7 +982,7 @@ gst_xml_helper_get_node_as_string (xmlNode * a_node, gchar ** content)
   out_buf = xmlAllocOutputBuffer (NULL);
   g_assert (out_buf != NULL);
   xmlNodeDumpOutput (out_buf, a_node->doc, a_node, 0, 0, txt_encoding);
-  xmlOutputBufferFlush (out_buf);
+  (void) xmlOutputBufferFlush (out_buf);
 #ifdef LIBXML2_NEW_BUFFER
   if (xmlOutputBufferGetSize (out_buf) > 0) {
     *content =