- Timestamp:
- Feb 28, 2023 10:32:48 AM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r98775 r98777 1364 1364 PCALLBACKDATA_FS_NOTIFY const pFsNotify = (PCALLBACKDATA_FS_NOTIFY)pEvent->Payload().Raw(); 1365 1365 AssertPtrReturn(pFsNotify, VERR_INVALID_POINTER); 1366 vrcGuest = (int)pFsNotify->rc;1366 int vrcGuest = (int)pFsNotify->rc; 1367 1367 if (RT_SUCCESS(vrcGuest)) 1368 1368 { … … 2116 2116 PCALLBACKDATA_FS_NOTIFY const pFsNotify = (PCALLBACKDATA_FS_NOTIFY)pEvent->Payload().Raw(); 2117 2117 AssertPtrReturn(pFsNotify, VERR_INVALID_POINTER); 2118 vrcGuest = (int)pFsNotify->rc;2118 int vrcGuest = (int)pFsNotify->rc; 2119 2119 if (RT_SUCCESS(vrcGuest)) 2120 2120 {
Note:
See TracChangeset
for help on using the changeset viewer.