Changeset 30444 in vbox
- Timestamp:
- Jun 25, 2010 6:54:28 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 63092
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlExec.cpp
r30436 r30444 883 883 * Close the child ends of any pipes and redirected files. 884 884 */ 885 intrc2 = RTHandleClose(phStdIn); AssertRC(rc2);885 rc2 = RTHandleClose(phStdIn); AssertRC(rc2); 886 886 phStdIn = NULL; 887 887 rc2 = RTHandleClose(phStdOut); AssertRC(rc2); … … 913 913 pData->pszCmd, pThread->uContextID, rc); 914 914 915 intrc2 = VbglR3GuestCtrlExecReportStatus(pThread->uClientID, pThread->uContextID, pData->uPID,916 917 915 rc2 = VbglR3GuestCtrlExecReportStatus(pThread->uClientID, pThread->uContextID, pData->uPID, 916 PROC_STS_ERROR, rc, 917 NULL /* pvData */, 0 /* cbData */); 918 918 if (RT_FAILURE(rc2)) 919 919 VBoxServiceError("ControlExec: Could not report process start error! Error: %Rrc (process error %Rrc)\n",
Note:
See TracChangeset
for help on using the changeset viewer.