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

Function hb_update_str

libhb/common.c:4648–4659  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4646}
4647
4648void hb_update_str( char **dst, const char *src )
4649{
4650 if ( dst )
4651 {
4652 free( *dst );
4653 *dst = NULL;
4654 if ( src )
4655 {
4656 *dst = strdup( src );
4657 }
4658 }
4659}
4660
4661/**********************************************************************
4662 * hb_title_init

Callers 8

hb_dict_to_jobFunction · 0.85
hb_job_set_encoder_tuneFunction · 0.85
hb_job_set_encoder_levelFunction · 0.85
hb_job_set_fileFunction · 0.85
hb_chapter_set_titleFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected