- Timestamp:
- Aug 27, 2007 12:12:42 PM (17 years ago)
- Location:
- trunk/src/VBox/HostServices/SharedFolders
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/service.cpp
r4368 r4383 592 592 if (Handle == SHFL_HANDLE_NIL) 593 593 { 594 AssertMsgFailed(("Invalid handle!!!!\n")); 594 595 rc = VERR_INVALID_HANDLE; 595 596 } -
trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp
r4372 r4383 179 179 if (!pszRoot || cbRoot == 0) 180 180 { 181 Log(("vbsfBuildFullPath: invalid root!\n")); 181 182 return VERR_INVALID_PARAMETER; 182 183 } … … 201 202 rc = VERR_NO_MEMORY; 202 203 *ppszFullPath = NULL; 204 Log(("RTMemAllocZ %x failed!!\n", cbUtf8FullPath)); 203 205 } 204 206 else … … 447 449 *ppszFullPath = pszFullPath; 448 450 449 LogFlow(("vbsfBuildFullPath: %s \n", pszFullPath));451 LogFlow(("vbsfBuildFullPath: %s rc=%Vrc\n", pszFullPath, rc)); 450 452 } 451 453 … … 792 794 int rc = VINF_SUCCESS; 793 795 794 LogFlow(("vbsfCreate: pClient = %p, pPath = %p, cbPath = %d, pParms = %p \n",795 pClient, pPath, cbPath, pParms ));796 LogFlow(("vbsfCreate: pClient = %p, pPath = %p, cbPath = %d, pParms = %p CreateFlags=%x\n", 797 pClient, pPath, cbPath, pParms, pParms->CreateFlags)); 796 798 797 799 /* Check the client access rights to the root. */ … … 995 997 } 996 998 997 Log(("vbsfCreate: handle = %RX64 rc = %Vrc \n", (uint64_t)pParms->Handle, rc));999 Log(("vbsfCreate: handle = %RX64 rc = %Vrc result=%x\n", (uint64_t)pParms->Handle, rc, pParms->Result)); 998 1000 999 1001 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.