diff options
author | Vincent Penquerc'h <vincent.penquerch@collabora.co.uk> | 2014-04-09 11:02:00 +0100 |
---|---|---|
committer | Vincent Penquerc'h <vincent.penquerch@collabora.co.uk> | 2014-04-09 11:03:17 +0100 |
commit | 25d4ca70c9a63a597402e663f08cf1cfc6a7640d (patch) | |
tree | 85d50a04111e68fca01cb2559a3b7cb7e8413e07 /ext/opus/gstopusheader.c | |
parent | 5feeee62c8c9be2a036ba89be0c56dd8b339b180 (diff) | |
download | gstreamer-plugins-bad-25d4ca70c9a63a597402e663f08cf1cfc6a7640d.tar.gz |
opus: add missing va_end in variadic function
Coverity 1139944
Diffstat (limited to 'ext/opus/gstopusheader.c')
-rw-r--r-- | ext/opus/gstopusheader.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/opus/gstopusheader.c b/ext/opus/gstopusheader.c index 70844c491..b654aad32 100644 --- a/ext/opus/gstopusheader.c +++ b/ext/opus/gstopusheader.c @@ -143,6 +143,7 @@ _gst_caps_set_buffer_array (GstCaps * caps, const gchar * field, buf = va_arg (va, GstBuffer *); } + va_end (va); gst_structure_set_value (structure, field, &array); g_value_unset (&array); |