Changeset 71198 in vbox for trunk/src/VBox/HostDrivers/Support/os2
- Timestamp:
- Mar 5, 2018 10:59:17 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 121103
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/os2/SUPDrv-os2.cpp
r62490 r71198 259 259 * Dispatch the fast IOCtl. 260 260 */ 261 supdrvIOCtlFast(iFunction, 0, &g_DevExt, pSession); 261 int rc; 262 if ((unsigned)(iFunction - SUP_IOCTL_FAST_DO_FIRST) < (unsigned)32) 263 rc = supdrvIOCtlFast(iFunction, 0, &g_DevExt, pSession); 264 else 265 rc = VERR_INVALID_FUNCTION; 262 266 supdrvSessionRelease(pSession); 263 return 0;267 return rc; 264 268 } 265 269
Note:
See TracChangeset
for help on using the changeset viewer.