Bug fix: SIGSEGV of libcdio system adapter if drive list is empty

Этот коммит содержится в:
Thomas Schmitt 2010-05-29 07:44:41 +00:00
родитель edca339338
Коммит cc7548f1c7
2 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -1 +1 @@
#define Cdrskin_timestamP "2010.05.16.090624"
#define Cdrskin_timestamP "2010.05.29.074318"

Просмотреть файл

@ -229,8 +229,9 @@ static int sg_give_next_adr_raw(burn_drive_enumerator_t *idx,
}
} else if (initialize == -1) {
if (*(idx->ppsz_cd_drives) != NULL)
cdio_free_device_list(idx->ppsz_cd_drives);
if (idx->ppsz_cd_drives != NULL)
if (*(idx->ppsz_cd_drives) != NULL)
cdio_free_device_list(idx->ppsz_cd_drives);
idx->ppsz_cd_drives = NULL;
}