ac3parse: fix memory leak

This commit is contained in:
Vincent Penquerc'h 2015-04-17 13:32:54 +01:00
parent fc038f1f4e
commit 6e3835594c

View file

@ -478,7 +478,8 @@ gst_ac3_parse_frame_header (GstAc3Parse * parse, GstBuffer * buf, gint skip,
goto cleanup;
} else {
GST_DEBUG_OBJECT (parse, "unexpected bsid %d", bsid);
return FALSE;
ret = FALSE;
goto cleanup;
}
GST_DEBUG_OBJECT (parse, "unexpected bsid %d", bsid);