Changeset 67849 in vbox
- Timestamp:
- Jul 7, 2017 12:40:49 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 116800
- Location:
- trunk/src/VBox/Runtime/common/fs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/iso9660vfs.cpp
r67774 r67849 800 800 801 801 /** 802 * FATfile operations.802 * ISO FS file operations. 803 803 */ 804 804 DECL_HIDDEN_CONST(const RTVFSFILEOPS) g_rtFsIos9660FileOps = -
trunk/src/VBox/Runtime/common/fs/isomaker.cpp
r67848 r67849 5178 5178 pEntry->fFlags = 0; 5179 5179 size_t offEntry = 0; 5180 size_t off = pEntry->Hdr.cbEntry;5180 size_t off = RT_UOFFSETOF(ISO9660RRIPSL, abComponents); 5181 5181 5182 5182 /* Does it start with a root slash? */ … … 5378 5378 pPX->Hdr.cbEntry = ISO9660RRIPPX_LEN; 5379 5379 pPX->Hdr.bVersion = ISO9660RRIPPX_VER; 5380 pPX->fMode.be = RT_H2BE_U32((uint32_t) pName->fMode);5381 pPX->fMode.le = RT_H2LE_U32((uint32_t) pName->fMode);5380 pPX->fMode.be = RT_H2BE_U32((uint32_t)(pName->fMode & RTFS_UNIX_MASK)); 5381 pPX->fMode.le = RT_H2LE_U32((uint32_t)(pName->fMode & RTFS_UNIX_MASK)); 5382 5382 pPX->cHardlinks.be = RT_H2BE_U32((uint32_t)pName->cHardlinks); 5383 5383 pPX->cHardlinks.le = RT_H2LE_U32((uint32_t)pName->cHardlinks);
Note:
See TracChangeset
for help on using the changeset viewer.