Changeset 627:41b59125a957 in qutecom-2.2


Ignore:
Timestamp:
Jun 11, 2010 12:06:26 PM (3 years ago)
Author:
Bluoxigen
Branch:
default
Message:

bug fix : alloca

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wifo/owsl/src/core/owsl_address.c

    r375 r627  
    919919#ifdef WIN32 
    920920 
    921 #include <Windows.h> 
     921#include <windows.h> 
    922922#include <Iphlpapi.h> 
    923923 
     
    10421042 
    10431043        if (!GetIpForwardTable(NULL, &siz_ipfwd_table, FALSE) == ERROR_INSUFFICIENT_BUFFER 
    1044                 || !(ipfwdt = (PMIB_IPFORWARDTABLE) alloca (siz_ipfwd_table))) 
     1044                || !(ipfwdt = (PMIB_IPFORWARDTABLE) _alloca (siz_ipfwd_table))) 
    10451045        { 
    10461046                return -1; 
Note: See TracChangeset for help on using the changeset viewer.