opus: add missing va_end in variadic function

Coverity 1139944
This commit is contained in:
Vincent Penquerc'h 2014-04-09 11:02:00 +01:00
parent 97d0927a9c
commit 16042fac2b

View file

@ -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);