VirtualBox

Changeset 40109 in vbox for trunk/src


Ignore:
Timestamp:
Feb 13, 2012 9:11:46 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
76250
Message:

HostServices/SharedFolders: clearer code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp

    r40108 r40109  
    831831    if (RT_SUCCESS(rc))
    832832    {
     833        rc = VERR_NO_MEMORY;  /* Default error. */
    833834        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        }
    843843    }
    844844    if (RT_FAILURE(rc))
     
    893893        }
    894894    }
    895 
    896     if (RT_SUCCESS(rc))
     895    else
    897896    {
    898897        /** @note The shared folder status code is very approximate, as the runtime
     
    948947        }
    949948    }
     949    /* Free resources if any part of the function has failed. */
    950950    if (RT_FAILURE(rc))
    951951    {
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette