Changeset 65083 in vbox
- Timestamp:
- Jan 3, 2017 3:18:37 PM (8 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Devices/Storage/DrvHostDVD.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DrvHostDVD.cpp
r65078 r65083 549 549 550 550 /* 551 * Parse the command first to fend off any illegal or dangerou ps commands we don't want the guest551 * Parse the command first to fend off any illegal or dangerous commands we don't want the guest 552 552 * to execute on the host drive. 553 553 */ … … 612 612 { 613 613 if (i * cbSector > cbScsiCmdBufLimit) 614 cReqSectors = cbScsiCmdBufLimit / (uint32_t)cbSector;614 cReqSectors = (uint32_t)(cbScsiCmdBufLimit / cbSector); 615 615 else 616 616 cReqSectors = i;
Note:
See TracChangeset
for help on using the changeset viewer.

