Changeset 104635 in vbox
- Timestamp:
- May 15, 2024 9:29:32 AM (7 months ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DrvAudioRec.cpp
r103420 r104635 777 777 LogRel(("Recording: Error creating audio file '%s' (%Rrc)\n", pszFile, vrc)); 778 778 } 779 break; 780 #else 781 vrc = VERR_NOT_SUPPORTED; 779 782 break; 780 783 #endif -
trunk/src/VBox/Main/src-client/GuestDirectoryImpl.cpp
r104178 r104635 947 947 } 948 948 } 949 else if (pEvent->HasGuestError() && pvrcGuest)949 else if (pEvent->HasGuestError()) 950 950 *pvrcGuest = pEvent->GuestResult(); 951 951 } -
trunk/src/VBox/Main/src-client/GuestDnDPrivate.cpp
r98286 r104635 534 534 535 535 if (!fCompleted) 536 { 536 537 hrc = m_pProgress->i_notifyComplete(VBOX_E_DND_ERROR, COM_IIDOF(IGuest), 537 538 m_pParent->getComponentName(), strMsg.c_str()); 539 AssertComRC(hrc); 540 } 538 541 break; 539 542 } … … 1553 1556 pData->cbExtra, pData->cbProcessed, pData->getRemaining(), cbDataAdd)); 1554 1557 1555 if ( !pState 1556 || !cbDataAdd) /* Only update if something really changes. */ 1558 if (!cbDataAdd) /* Only update if something really changes. */ 1557 1559 return VINF_SUCCESS; 1558 1560 1559 if (cbDataAdd) 1560 pData->addProcessed(cbDataAdd); 1561 pData->addProcessed(cbDataAdd); 1561 1562 1562 1563 const uint8_t uPercent = pData->getPercentComplete(); -
trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp
r103415 r104635 1210 1210 /* Protocol version 1 sends the file path *every* time with a new file chunk. 1211 1211 * In protocol version 2 we only do this once with HOST_DND_FN_HG_SND_FILE_HDR. */ 1212 if (m_pState->m_uProtocolVersion <= 1) 1212 AssertReturn(m_pState->m_uProtocolVersion, VERR_WRONG_ORDER); 1213 if (m_pState->m_uProtocolVersion == 1) 1213 1214 { 1214 1215 const size_t cchDstPath = RTStrNLen(pcszDstPath, RTPATH_MAX); -
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 -
trunk/src/VBox/Main/src-client/RecordingCodec.cpp
r98278 r104635 195 195 /* Source */ 196 196 pVideoFrame->pu8RGBBuf, pCodec->Parms.Video.uWidth, pCodec->Parms.Video.uHeight); 197 AssertRCReturn(vrc, vrc); 197 198 198 199 PRECORDINGCODECVPX pVPX = &pCodec->Video.VPX; -
trunk/src/VBox/Main/src-server/HostImpl.cpp
r101684 r104635 204 204 Data() 205 205 : 206 pParent(NULL), 206 207 fDVDDrivesListBuilt(false), 207 208 fFloppyDrivesListBuilt(false), -
trunk/src/VBox/Main/src-server/PlatformX86Impl.cpp
r101063 r104635 403 403 m->bd.backup(); 404 404 m->bd->fX2APIC = !!aValue; 405 if (aValue) 406 m->bd->fAPIC = !!aValue; 405 m->bd->fAPIC = !!aValue; 407 406 break; 408 407 } -
trunk/src/VBox/Main/src-server/RecordingScreenSettingsImpl.cpp
r98262 r104635 53 53 Data() 54 54 : pParent(NULL) 55 , uScreenId(0) 55 56 , cRefs(0) 56 57 { }
Note:
See TracChangeset
for help on using the changeset viewer.