Changeset 62448 in vbox for trunk/src/VBox/Runtime/common/dvm
- Timestamp:
- Jul 22, 2016 2:51:49 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dvm/dvmmbr.cpp
r57444 r62448 216 216 bool *pfUsed) 217 217 { 218 PRTDVMFMTINTERNAL pThis = hVolMgrFmt; 219 218 NOREF(hVolMgrFmt); 220 219 NOREF(cbRange); 221 220 222 221 /* MBR uses the first sector only. */ 223 if (off < 512) 224 *pfUsed = true; 225 else 226 *pfUsed = false; 227 222 *pfUsed = off < 512; 228 223 return VINF_SUCCESS; 229 224 }
Note:
See TracChangeset
for help on using the changeset viewer.