Changeset 42509 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Aug 1, 2012 1:17:11 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 79674
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestProcessImpl.cpp
r42508 r42509 691 691 mData.mStatus = ProcessStatus_Error; 692 692 693 Utf8Str strError = Utf8StrFmt(tr("Guest process \"%s\" could not be started: " , mData.mProcess.mCommand.c_str()));693 Utf8Str strError = Utf8StrFmt(tr("Guest process \"%s\" could not be started: "), mData.mProcess.mCommand.c_str()); 694 694 695 695 /* Note: It's not required that the process has been started before. */ … … 700 700 else 701 701 { 702 /** @todo pData->u32Flags ; /** @todoint vs. uint32 -- IPRT errors are *negative* !!! */702 /** @todo pData->u32Flags: int vs. uint32 -- IPRT errors are *negative* !!! */ 703 703 switch (pData->u32Flags) /* pData->u32Flags contains the IPRT error code from guest side. */ 704 704 { … … 1566 1566 ReturnComNotImplemented(); 1567 1567 #else 1568 if (aSize < 0)1569 return setError(E_INVALIDARG, tr("The size argument (%lld) is negative"), aSize);1570 1568 if (aSize == 0) 1571 return setError(E_INVALIDARG, tr("The size (%lld) is zero"), aSize);1569 return setError(E_INVALIDARG, tr("The size to read is zero")); 1572 1570 CheckComArgOutSafeArrayPointerValid(aData); 1573 1571
Note:
See TracChangeset
for help on using the changeset viewer.