VirtualBox

Changeset 83811 in vbox


Ignore:
Timestamp:
Apr 19, 2020 12:06:38 AM (5 years ago)
Author:
vboxsync
Message:

VBoxDbg: VC++ 14.1 warning. bugref:8489

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Debugger/VBoxDbgStatsQt.cpp

    r82968 r83811  
    963963        /* destroy the children first with the appropriate begin/endRemoveRows signals. */
    964964        DBGGUISTATSSTACK    Stack;
    965         Stack.a[0].pNode = pNode;
     965        Stack.a[0].pNode  = pNode;
    966966        Stack.a[0].iChild = -1;
    967967        Stack.iTop = 0;
     
    969969        {
    970970            /* get top element */
    971             PDBGGUISTATSNODE pNode = Stack.a[Stack.iTop].pNode;
    972             uint32_t         iChild = ++Stack.a[Stack.iTop].iChild;
    973             if (iChild < pNode->cChildren)
     971            PDBGGUISTATSNODE pCurNode = Stack.a[Stack.iTop].pNode;
     972            uint32_t         iChild   = ++Stack.a[Stack.iTop].iChild;
     973            if (iChild < pCurNode->cChildren)
    974974            {
    975975                /* push */
    976976                Stack.iTop++;
    977977                Assert(Stack.iTop < (int32_t)RT_ELEMENTS(Stack.a));
    978                 Stack.a[Stack.iTop].pNode = pNode->papChildren[iChild];
     978                Stack.a[Stack.iTop].pNode  = pCurNode->papChildren[iChild];
    979979                Stack.a[Stack.iTop].iChild = 0;
    980980            }
     
    983983                /* pop and destroy all the children. */
    984984                Stack.iTop--;
    985                 uint32_t i = pNode->cChildren;
     985                uint32_t i = pCurNode->cChildren;
    986986                if (i)
    987987                {
    988                     beginRemoveRows(createIndex(pNode->iSelf, 0, pNode), 0, i - 1);
     988                    beginRemoveRows(createIndex(pCurNode->iSelf, 0, pCurNode), 0, i - 1);
    989989                    while (i-- > 0)
    990                         destroyNode(pNode->papChildren[i]);
    991                     pNode->cChildren = 0;
     990                        destroyNode(pCurNode->papChildren[i]);
     991                    pCurNode->cChildren = 0;
    992992                    endRemoveRows();
    993993                }
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