Changeset 19873


Ignore:
Timestamp:
Oct 7, 2002, 1:02:03 PM (23 years ago)
Author:
sandervl
Message:

another bugfix for what appears to be a compiler bug (??)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tags/trunk/src/iphlpapi/iphlpapi.cpp

    r19872 r19873  
    1 /* $Id: iphlpapi.cpp,v 1.11 2002-10-07 10:25:56 sandervl Exp $ */
     1/* $Id: iphlpapi.cpp,v 1.12 2002-10-07 11:02:03 sandervl Exp $ */
    22/*
    33 *      IPHLPAPI library
     
    399399    // check for sufficient space
    400400    DWORD dwRequired = i_sizeOfIP_ADAPTER_INFO(pip);
    401    
    402     if (lSpaceLeft - dwRequired >= 0)
    403     {
    404       lSpaceLeft -= dwRequired;
    405      
     401
     402    lSpaceLeft -= dwRequired;
     403    if (lSpaceLeft >= 0)
     404    {     
    406405      // @PF revised - this thing works because we currently do not support
    407406      // multi-ip, multi-gateway or multi-DHCP servers lists
Note: See TracChangeset for help on using the changeset viewer.