https://git.reactos.org/?p=reactos.git;a=commitdiff;h=ec26cde4a13b3889883d3e...
commit ec26cde4a13b3889883d3e1b19f7878179c76df5 Author: David Quintana gigaherz@gmail.com AuthorDate: Fri Nov 24 18:11:29 2017 +0100
[CDFS_NEW] Accept STATUS_NOT_IMPLEMENTED for IOCTL_CDROM_READ_TOC_EX fallback to IOCTL_CDROM_READ_TOC. --- drivers/filesystems/cdfs_new/strucsup.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/drivers/filesystems/cdfs_new/strucsup.c b/drivers/filesystems/cdfs_new/strucsup.c index 8082d5f1fb..7aa9c7211a 100755 --- a/drivers/filesystems/cdfs_new/strucsup.c +++ b/drivers/filesystems/cdfs_new/strucsup.c @@ -2292,6 +2292,7 @@ RetryReadToc:
if (!UseReadToc && ((Status == STATUS_INVALID_DEVICE_REQUEST) || + (Status == STATUS_NOT_IMPLEMENTED) || /* ReactOS Change: we return STATUS_NOT_IMPLEMENTED for IOCTL_CDROM_READ_TOC_EX */ (Status == STATUS_INVALID_PARAMETER))) {
UseReadToc = TRUE;