Changeset 10246 in vbox
- Timestamp:
- Jul 4, 2008 5:45:16 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 32841
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl.cpp
r10233 r10246 3567 3567 int rc = mVMMDev->hgcmHostCall ("VBoxSharedInfoSvc", GET_CONFIG_KEY_HOST, 3, &parm[0]); 3568 3568 /* The returned string should never be able to be greater than our buffer */ 3569 AssertLogRel(rc != V INF_BUFFER_OVERFLOW);3570 if (RT_SUCCESS(rc) && (rc != VINF_BUFFER_OVERFLOW))3569 AssertLogRel(rc != VERR_BUFFER_OVERFLOW); 3570 if (RT_SUCCESS(rc) || (VERR_NOT_FOUND == rc)) 3571 3571 { 3572 3572 hrc = S_OK; 3573 if ( parm[2].u.uint32 != 0)3573 if (rc != VERR_NOT_FOUND) 3574 3574 Utf8Value.cloneTo(aValue); 3575 3575 else
Note:
See TracChangeset
for help on using the changeset viewer.