Ignore:
Timestamp:
Aug 25, 2015 8:45:46 AM (9 years ago)
Author:
nanang
Message:

Re #1881: Fixed compile warnings on VS2015 about declaration hides previous declaration.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c

    r5099 r5170  
    45114511         * Always answer with 2xx. 
    45124512         */ 
    4513         pjsip_tx_data *tdata; 
     4513        pjsip_tx_data *tdata2; 
    45144514        const pj_str_t str_false = { "false", 5}; 
    45154515        pjsip_hdr *hdr; 
    45164516 
    45174517        status = pjsip_dlg_create_response(inv->dlg, rdata, code, NULL, 
    4518                                            &tdata); 
     4518                                           &tdata2); 
    45194519        if (status != PJ_SUCCESS) { 
    45204520            pjsua_perror(THIS_FILE, "Unable to create 2xx response to REFER", 
     
    45254525        /* Add Refer-Sub header */ 
    45264526        hdr = (pjsip_hdr*) 
    4527                pjsip_generic_string_hdr_create(tdata->pool, &str_refer_sub, 
     4527               pjsip_generic_string_hdr_create(tdata2->pool, &str_refer_sub, 
    45284528                                              &str_false); 
    4529         pjsip_msg_add_hdr(tdata->msg, hdr); 
     4529        pjsip_msg_add_hdr(tdata2->msg, hdr); 
    45304530 
    45314531 
    45324532        /* Send answer */ 
    45334533        status = pjsip_dlg_send_response(inv->dlg, pjsip_rdata_get_tsx(rdata), 
    4534                                          tdata); 
     4534                                         tdata2); 
    45354535        if (status != PJ_SUCCESS) { 
    45364536            pjsua_perror(THIS_FILE, "Unable to create 2xx response to REFER", 
Note: See TracChangeset for help on using the changeset viewer.