From f494da89b41a07073d0e86d3a5b2b2368342bb3c Mon Sep 17 00:00:00 2001 From: Luis de Bethencourt Date: Mon, 9 Mar 2015 12:13:34 +0000 Subject: [PATCH] matroska: unused value Value set in ret will be overwritten just before exiting the function. CID #1226469 --- gst/matroska/matroska-parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/matroska/matroska-parse.c b/gst/matroska/matroska-parse.c index 9abd67fa19..9c8d15a7d9 100644 --- a/gst/matroska/matroska-parse.c +++ b/gst/matroska/matroska-parse.c @@ -2457,7 +2457,7 @@ gst_matroska_parse_output (GstMatroskaParse * parse, GstBuffer * buffer, GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_HEADER); GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DELTA_UNIT); - ret = gst_pad_push (parse->srcpad, buf); + gst_pad_push (parse->srcpad, buf); parse->pushed_headers = TRUE; }