- Timestamp:
- Feb 13, 2012 9:11:46 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76250
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp
r40108 r40109 831 831 if (RT_SUCCESS(rc)) 832 832 { 833 rc = VERR_NO_MEMORY; /* Default error. */ 833 834 handle = vbsfAllocFileHandle(pClient); 834 } 835 if (SHFL_HANDLE_NIL != handle) 836 { 837 rc = VERR_NO_MEMORY; /* If this fails - rewritten immediately on success. */ 838 pHandle = vbsfQueryFileHandle(pClient, handle); 839 } 840 if (0 != pHandle) 841 { 842 rc = RTFileOpen(&pHandle->file.Handle, pszPath, fOpen); 835 if (handle != SHFL_HANDLE_NIL) 836 { 837 pHandle = vbsfQueryFileHandle(pClient, handle); 838 if (pHandle) 839 { 840 rc = RTFileOpen(&pHandle->file.Handle, pszPath, fOpen); 841 } 842 } 843 843 } 844 844 if (RT_FAILURE(rc)) … … 893 893 } 894 894 } 895 896 if (RT_SUCCESS(rc)) 895 else 897 896 { 898 897 /** @note The shared folder status code is very approximate, as the runtime … … 948 947 } 949 948 } 949 /* Free resources if any part of the function has failed. */ 950 950 if (RT_FAILURE(rc)) 951 951 {
Note:
See TracChangeset
for help on using the changeset viewer.