VirtualBox

Changeset 104635 in vbox


Ignore:
Timestamp:
May 15, 2024 9:29:32 AM (7 months ago)
Author:
vboxsync
Message:

Main: Fixed warnings. ​bugref:3409

Location:
trunk/src/VBox/Main
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/DrvAudioRec.cpp

    r103420 r104635  
    777777                        LogRel(("Recording: Error creating audio file '%s' (%Rrc)\n", pszFile, vrc));
    778778                }
     779                break;
     780        #else
     781                vrc = VERR_NOT_SUPPORTED;
    779782                break;
    780783        #endif
  • trunk/src/VBox/Main/src-client/GuestDirectoryImpl.cpp

    r104178 r104635  
    947947                }
    948948            }
    949             else if (pEvent->HasGuestError() && pvrcGuest)
     949            else if (pEvent->HasGuestError())
    950950                *pvrcGuest = pEvent->GuestResult();
    951951        }
  • trunk/src/VBox/Main/src-client/GuestDnDPrivate.cpp

    r98286 r104635  
    534534
    535535            if (!fCompleted)
     536            {
    536537                hrc = m_pProgress->i_notifyComplete(VBOX_E_DND_ERROR, COM_IIDOF(IGuest),
    537538                                                    m_pParent->getComponentName(), strMsg.c_str());
     539                AssertComRC(hrc);
     540            }
    538541            break;
    539542        }
     
    15531556                 pData->cbExtra, pData->cbProcessed, pData->getRemaining(), cbDataAdd));
    15541557
    1555     if (   !pState
    1556         || !cbDataAdd) /* Only update if something really changes. */
     1558    if (!cbDataAdd) /* Only update if something really changes. */
    15571559        return VINF_SUCCESS;
    15581560
    1559     if (cbDataAdd)
    1560         pData->addProcessed(cbDataAdd);
     1561    pData->addProcessed(cbDataAdd);
    15611562
    15621563    const uint8_t uPercent = pData->getPercentComplete();
  • trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp

    r103415 r104635  
    12101210    /* Protocol version 1 sends the file path *every* time with a new file chunk.
    12111211     * 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)
    12131214    {
    12141215        const size_t cchDstPath = RTStrNLen(pcszDstPath, RTPATH_MAX);
  • trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp

    r104178 r104635  
    10841084                // Nothing to do here.
    10851085            }
    1086             else if (pEvent->HasGuestError() && pvrcGuest)
     1086            else if (pEvent->HasGuestError())
    10871087                *pvrcGuest = pEvent->GuestResult();
    10881088        }
     
    12501250    {
    12511251        vrc = pEvent->Wait(GSTCTL_DEFAULT_TIMEOUT_MS);
    1252         if (pEvent->HasGuestError() && pvrcGuest)
     1252        if (pEvent->HasGuestError())
    12531253            *pvrcGuest = pEvent->GuestResult();
    12541254    }
     
    14221422                else
    14231423                {
    1424                     if (pvrcGuest)
    1425                         *pvrcGuest = vrcGuest;
     1424                    *pvrcGuest = vrcGuest;
    14261425                    vrc = VERR_GSTCTL_GUEST_ERROR;
    14271426                }
     
    15311530    {
    15321531        /* Nothing further to do here yet. */
    1533         if (pvrcGuest)
    1534             *pvrcGuest = VINF_SUCCESS;
     1532        *pvrcGuest = VINF_SUCCESS;
    15351533    }
    15361534
  • trunk/src/VBox/Main/src-client/RecordingCodec.cpp

    r98278 r104635  
    195195                                     /* Source */
    196196                                     pVideoFrame->pu8RGBBuf, pCodec->Parms.Video.uWidth, pCodec->Parms.Video.uHeight);
     197    AssertRCReturn(vrc, vrc);
    197198
    198199    PRECORDINGCODECVPX pVPX = &pCodec->Video.VPX;
  • trunk/src/VBox/Main/src-server/HostImpl.cpp

    r101684 r104635  
    204204    Data()
    205205        :
     206          pParent(NULL),
    206207          fDVDDrivesListBuilt(false),
    207208          fFloppyDrivesListBuilt(false),
  • trunk/src/VBox/Main/src-server/PlatformX86Impl.cpp

    r101063 r104635  
    403403            m->bd.backup();
    404404            m->bd->fX2APIC = !!aValue;
    405             if (aValue)
    406                 m->bd->fAPIC = !!aValue;
     405            m->bd->fAPIC   = !!aValue;
    407406            break;
    408407        }
  • trunk/src/VBox/Main/src-server/RecordingScreenSettingsImpl.cpp

    r98262 r104635  
    5353    Data()
    5454        : pParent(NULL)
     55        , uScreenId(0)
    5556        , cRefs(0)
    5657    { }
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette