VirtualBox

Changeset 107188 in vbox for trunk


Ignore:
Timestamp:
Nov 29, 2024 1:28:35 PM (2 months ago)
Author:
vboxsync
Message:

src/VBox/Main/include/Recording: Fixed missing constructor intializers, found by Parfait.

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

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/Recording.h

    r106061 r107188  
    224224    /** Current operation of progress. Set to 0 if not started yet, >= 1 if started. */
    225225    ULONG                        m_ulCurOp;
    226     /** Number of progress operations. Always >= 1. */
     226    /** Number of progress operations. Always >= 1 (if initialized). */
    227227    ULONG                        m_cOps;
    228228    /** The progress object assigned to this context.
  • trunk/src/VBox/Main/src-client/Recording.cpp

    r106061 r107188  
    185185    : m_pConsole(NULL)
    186186    , m_enmState(RECORDINGSTS_UNINITIALIZED)
     187    , m_ulCurOp(0)
     188    , m_cOps(0)
     189    , m_fShutdown(false)
    187190    , m_cStreamsEnabled(0)
     191    , m_tsStartMs(0)
    188192{
    189193    int vrc = RTCritSectInit(&m_CritSect);
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