VirtualBox

Changeset 33772 in vbox for trunk/src/VBox/Runtime


Ignore:
Timestamp:
Nov 4, 2010 2:59:15 PM (14 years ago)
Author:
vboxsync
Message:

process-creation-posix.cpp: Don't assert when the executable file doesn't exist or isn't executable.

File:
1 edited

Legend:

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

    r33602 r33772  
    339339     */
    340340    if (access(pszExec, X_OK))
    341     {
    342         rc = RTErrConvertFromErrno(errno);
    343         AssertMsgFailed(("'%s' %Rrc!\n", pszExec, rc));
    344         return rc;
    345     }
     341        return RTErrConvertFromErrno(errno);
    346342
    347343    pid_t pid = -1;
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