Changeset 92227 in vbox
- Timestamp:
- Nov 4, 2021 9:40:52 PM (3 years ago)
- Location:
- trunk/src/VBox/Devices/Storage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DrvHostDVD.cpp
r91869 r92227 47 47 typedef struct DRVHOSTDVD 48 48 { 49 /** Base driv r data. */49 /** Base driver data. */ 50 50 DRVHOSTBASE Core; 51 51 /** The current tracklist of the loaded medium if passthrough is used. */ … … 499 499 } 500 500 501 /** 502 * Reset a host dvd drive driver instance. 503 * 504 * @copydoc FNPDMDRVRESET 505 */ 506 static DECLCALLBACK(void) drvHostDvdReset(PPDMDRVINS pDrvIns) 507 { 508 PDRVHOSTDVD pThis = PDMINS_2_DATA(pDrvIns, PDRVHOSTDVD); 509 510 if (pThis->pTrackList) 511 { 512 ATAPIPassthroughTrackListDestroy(pThis->pTrackList); 513 pThis->pTrackList = NULL; 514 } 515 516 int rc = drvHostBaseDoLockOs(&pThis->Core, false); 517 RT_NOREF(rc); 518 } 519 501 520 502 521 /** … … 534 553 NULL, 535 554 /* pfnReset */ 536 NULL,555 drvHostDvdReset, 537 556 /* pfnSuspend */ 538 557 NULL, -
trunk/src/VBox/Devices/Storage/DrvVD.cpp
r91955 r92227 4479 4479 pThis->offDisk = 0; 4480 4480 } 4481 pThis->fLocked = false; 4481 4482 } 4482 4483
Note:
See TracChangeset
for help on using the changeset viewer.