MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / hb_attachment_close

Function hb_attachment_close

libhb/common.c:6608–6617  ·  view source on GitHub ↗

* hb_attachment_close ********************************************************************** * *********************************************************************/

Source from the content-addressed store, hash-verified

6606 *
6607 *********************************************************************/
6608void hb_attachment_close( hb_attachment_t **attachment )
6609{
6610 if ( attachment && *attachment )
6611 {
6612 free((*attachment)->data);
6613 free((*attachment)->name);
6614 free(*attachment);
6615 *attachment = NULL;
6616 }
6617}
6618
6619/**********************************************************************
6620 * hb_yuv2rgb

Callers 2

hb_title_closeFunction · 0.85
job_cleanFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected