VirtualBox

Changeset 52899 in vbox


Ignore:
Timestamp:
Sep 30, 2014 3:24:26 PM (10 years ago)
Author:
vboxsync
Message:

Main: HosDnsMonitor for Windows: fix event indexes handling.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/win/HostDnsServiceWin.cpp

    r52897 r52899  
    493493        }
    494494        /* DNS update events range. */
    495         else if (rc > (WAIT_OBJECT_0 + VBOX_OFFSET_SUBTREE_EVENTS) &&
    496                  rc < (WAIT_OBJECT_0 + m_aWarehouse.size() - VBOX_OFFSET_SUBTREE_EVENTS))
     495        else if (rc >= (WAIT_OBJECT_0 + VBOX_OFFSET_SUBTREE_EVENTS) &&
     496                 rc <  (WAIT_OBJECT_0 + m_aWarehouse.size()))
    497497        {
    498498            Log2(("Network setting has changed at interface %ls.\n", m_aWarehouse[rc - WAIT_OBJECT_0].wcsInterface));
     
    524524        }
    525525        else
    526             AssertMsgFailedReturn(("WaitForMultipleObjects returns out of bound (%d) index %d. Please debug!", m_aWarehouse.size(), rc), VERR_INTERNAL_ERROR);
     526            AssertMsgFailedReturn(("WaitForMultipleObjects returns out of bound (%d) index %d. Please debug!\n", m_aWarehouse.size(), rc), VERR_INTERNAL_ERROR);
    527527    }
    528528    LogRel(("Monitor thread exited.\n"));
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