summaryrefslogtreecommitdiff
path: root/gst/matroska/matroska-parse.c
diff options
context:
space:
mode:
authorLuis de Bethencourt <luis.bg@samsung.com>2015-03-09 12:13:34 +0000
committerLuis de Bethencourt <luis.bg@samsung.com>2015-03-09 12:13:40 +0000
commitf494da89b41a07073d0e86d3a5b2b2368342bb3c (patch)
treeb0a4b54ae0af6d6b98aed6928a4298a3cd128dde /gst/matroska/matroska-parse.c
parent9e934d076b509b5f26c9b193c33eb55ad4692aa8 (diff)
matroska: unused value
Value set in ret will be overwritten just before exiting the function. CID #1226469
Diffstat (limited to 'gst/matroska/matroska-parse.c')
-rw-r--r--gst/matroska/matroska-parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/matroska/matroska-parse.c b/gst/matroska/matroska-parse.c
index 9abd67fa1..9c8d15a7d 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;
}