Closed a potential memory leak with CD-TEXT production. Coverity CID 21809.
This commit is contained in:
parent
02a2373f55
commit
8c23b95f5a
@ -1 +1 @@
|
|||||||
#define Cdrskin_timestamP "2015.10.23.160546"
|
#define Cdrskin_timestamP "2015.10.23.162527"
|
||||||
|
@ -278,10 +278,12 @@ int burn_write_opts_set_leadin_text(struct burn_write_opts *opts,
|
|||||||
if (num_packs > 0) {
|
if (num_packs > 0) {
|
||||||
memcpy(pack_buffer, text_packs, num_packs * 18);
|
memcpy(pack_buffer, text_packs, num_packs * 18);
|
||||||
opts->text_packs = pack_buffer;
|
opts->text_packs = pack_buffer;
|
||||||
|
pack_buffer = NULL;
|
||||||
}
|
}
|
||||||
opts->num_text_packs = num_packs;
|
opts->num_text_packs = num_packs;
|
||||||
ret = 1;
|
ret = 1;
|
||||||
ex:;
|
ex:;
|
||||||
|
BURN_FREE_MEM(pack_buffer);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user