Changeset 104635 in vbox for trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
- Timestamp:
- May 15, 2024 9:29:32 AM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r104178 r104635 1084 1084 // Nothing to do here. 1085 1085 } 1086 else if (pEvent->HasGuestError() && pvrcGuest)1086 else if (pEvent->HasGuestError()) 1087 1087 *pvrcGuest = pEvent->GuestResult(); 1088 1088 } … … 1250 1250 { 1251 1251 vrc = pEvent->Wait(GSTCTL_DEFAULT_TIMEOUT_MS); 1252 if (pEvent->HasGuestError() && pvrcGuest)1252 if (pEvent->HasGuestError()) 1253 1253 *pvrcGuest = pEvent->GuestResult(); 1254 1254 } … … 1422 1422 else 1423 1423 { 1424 if (pvrcGuest) 1425 *pvrcGuest = vrcGuest; 1424 *pvrcGuest = vrcGuest; 1426 1425 vrc = VERR_GSTCTL_GUEST_ERROR; 1427 1426 } … … 1531 1530 { 1532 1531 /* Nothing further to do here yet. */ 1533 if (pvrcGuest) 1534 *pvrcGuest = VINF_SUCCESS; 1532 *pvrcGuest = VINF_SUCCESS; 1535 1533 } 1536 1534
Note:
See TracChangeset
for help on using the changeset viewer.