Changeset 93510 in vbox for trunk/src/VBox/Runtime/common/fs
- Timestamp:
- Jan 31, 2022 7:51:43 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/isovfs.cpp
r93115 r93510 2096 2096 if (offNew >= 0) 2097 2097 { 2098 if (offNew <= _4G) 2099 { 2100 pThis->offFile = offNew; 2101 *poffActual = offNew; 2102 return VINF_SUCCESS; 2103 } 2104 return VERR_OUT_OF_RANGE; 2098 pThis->offFile = offNew; 2099 *poffActual = offNew; 2100 return VINF_SUCCESS; 2105 2101 } 2106 2102 return VERR_NEGATIVE_SEEK;
Note:
See TracChangeset
for help on using the changeset viewer.