Changeset 2282 in vbox for trunk/src/VBox/Main/SharedFolderImpl.cpp
- Timestamp:
- Apr 20, 2007 3:50:14 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/SharedFolderImpl.cpp
r977 r2282 238 238 Utf8Str hostPath = Utf8Str (mHostPath); 239 239 char hostPathFull [RTPATH_MAX]; 240 int vrc = RTPathReal (hostPath, hostPathFull, sizeof (hostPathFull)); 240 int vrc = RTPathExists(hostPath) ? RTPathReal (hostPath, hostPathFull, sizeof (hostPathFull)) 241 : VERR_PATH_NOT_FOUND; 241 242 if (VBOX_SUCCESS (vrc)) 242 243 {
Note:
See TracChangeset
for help on using the changeset viewer.