Ignore:
Timestamp:
Aug 1, 2017 7:49:34 AM (7 years ago)
Author:
nanang
Message:

Misc (re #1994): Fixed compile warnings on MSVC 2005 & 2015.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip/sip_resolve.c

    r5476 r5635  
    281281                    unsigned int count = 1; 
    282282                    pj_addrinfo ai[1]; 
    283                     pj_status_t status; 
    284  
    285                     status = pj_getaddrinfo(pj_AF_INET6(), 
     283                    pj_status_t status2; 
     284 
     285                    status2 = pj_getaddrinfo(pj_AF_INET6(), 
    286286                                            &target->addr.host, &count, ai); 
    287                     if (status == PJ_SUCCESS && count > 0 && 
     287                    if (status2 == PJ_SUCCESS && count > 0 && 
    288288                        ai[0].ai_addr.addr.sa_family == pj_AF_INET6()) 
    289289                    { 
Note: See TracChangeset for help on using the changeset viewer.