VirtualBox

Changeset 15026 in vbox


Ignore:
Timestamp:
Dec 5, 2008 9:43:41 AM (16 years ago)
Author:
vboxsync
Message:

process-posix.cpp: correct rc fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/posix/process-posix.cpp

    r15007 r15026  
    6464RTR3DECL(int)   RTProcCreate(const char *pszExec, const char * const *papszArgs, RTENV Env, unsigned fFlags, PRTPROCESS pProcess)
    6565{
    66     int rc = 0;
     66    int rc;
    6767
    6868    /*
     
    8383    if (access(pszExec, X_OK))
    8484    {
    85         int rc = RTErrConvertFromErrno(errno);
     85        rc = RTErrConvertFromErrno(errno);
    8686        AssertMsgFailed(("'%s' %Rrc!\n", pszExec, rc));
    8787        return rc;
     
    146146            return VINF_SUCCESS;
    147147        }
    148         int rc = errno;
     148        rc = errno;
    149149    }
    150150
Note: See TracChangeset for help on using the changeset viewer.

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