Changeset 109107 in vbox
- Timestamp:
- Apr 29, 2025 1:15:43 PM (10 days ago)
- svn:sync-xref-src-repo-rev:
- 168657
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/dirops.c
r108894 r109107 1102 1102 { 1103 1103 int rc; 1104 #if RTLNX_VER_MIN(6,15,0)1105 /* In 6.15, we need to take a reference to the resulting dentry. */1106 bool fDoLookup = true;1107 #else1108 bool fDoLookup = false;1109 #endif1110 1104 1111 1105 TRACE(); … … 1117 1111 | SHFL_CF_ACCESS_READWRITE 1118 1112 | SHFL_CF_DIRECTORY, 1119 false /*fStashHandle*/, f DoLookup, NULL /*phHandle*/, NULL /*fCreated*/);1113 false /*fStashHandle*/, false /*fDoLookup*/, NULL /*phHandle*/, NULL /*fCreated*/); 1120 1114 #if RTLNX_VER_MIN(6,15,0) 1121 return RT_SUCCESS(rc) ? dentry :ERR_PTR(rc);1115 return ERR_PTR(rc); 1122 1116 #else 1123 1117 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.