Implemented cdrskin -toc

This commit is contained in:
2006-10-22 13:03:28 +00:00
parent e5ed5f1856
commit 8f232d1133
7 changed files with 96 additions and 18 deletions

View File

@ -662,6 +662,10 @@ int burn_drive_info_forget(struct burn_drive_info *info, int force)
struct burn_disc *burn_drive_get_disc(struct burn_drive *d)
{
/* ts A61022: SIGSEGV on calling this function with blank media */
if(d->disc == NULL)
return NULL;
d->disc->refcnt++;
return d->disc;
}