GNOME Bugzilla – Bug 751641
vtdec: fix refcount error in error handling
Last modified: 2015-08-16 13:40:06 UTC
See code below: CFRelease (bbuf); if (status != noErr) goto sample_error; ... sample_error: GST_ELEMENT_ERROR (vtdec, RESOURCE, FAILED, (NULL), ("CMSampleBufferCreate returned %d", (int) status)); if (bbuf) CFRelease (bbuf); // <-- already released
Created attachment 306270 [details] [review] vtdec: fix refcount error in error handling
commit cc3d79f7cc595cb66d9c932d64b1f08334a80e84 Author: Ilya Konstantinov <ilya.konstantinov@gmail.com> Date: Mon Jun 29 12:40:55 2015 +0300 vtdec: fix refcount error in error handling https://bugzilla.gnome.org/show_bug.cgi?id=751641