Changeset 35540 in vbox
- Timestamp:
- Jan 13, 2011 3:36:00 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestCtrlImpl.cpp
r35456 r35540 2123 2123 } 2124 2124 else 2125 vrc = VERR_NO_DATA; /* This is not an error we want to report to COM. */ 2125 { 2126 /* No data within specified timeout available. Use a special 2127 * error so that we can gently handle that case a bit below. */ 2128 vrc = VERR_NO_DATA; 2129 } 2126 2130 } 2127 2131 else /* If callback not called within time ... well, that's a timeout! */ … … 2137 2141 if (vrc == VERR_NO_DATA) 2138 2142 { 2139 /* This is not an error we want to report to COM. */ 2143 /* If there was no output data then this is no error we want 2144 * to report to COM. The caller just gets back a size of 0 (zero). */ 2140 2145 rc = S_OK; 2141 2146 }
Note:
See TracChangeset
for help on using the changeset viewer.