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-apps/src/pjsua/pjsua_app_legacy.c

    r5065 r5170  
    607607{ 
    608608    char buf[128]; 
    609     pjsua_msg_data msg_data; 
     609    pjsua_msg_data msg_data_; 
    610610    input_result result; 
    611611    pj_str_t tmp; 
     
    632632    } 
    633633 
    634     pjsua_msg_data_init(&msg_data); 
    635     TEST_MULTIPART(&msg_data); 
     634    pjsua_msg_data_init(&msg_data_); 
     635    TEST_MULTIPART(&msg_data_); 
    636636    pjsua_call_make_call(current_acc, &tmp, &call_opt, NULL, 
    637                          &msg_data, &current_call); 
     637                         &msg_data_, &current_call); 
    638638} 
    639639 
     
    758758    pjsua_call_info call_info; 
    759759    char buf[128]; 
    760     pjsua_msg_data msg_data; 
     760    pjsua_msg_data msg_data_; 
    761761 
    762762    if (current_call != -1) { 
     
    790790            return; 
    791791 
    792         pjsua_msg_data_init(&msg_data); 
     792        pjsua_msg_data_init(&msg_data_); 
    793793 
    794794        if (st_code/100 == 3) { 
     
    799799            pjsip_generic_string_hdr_init2(&hcontact, &hname, &hvalue); 
    800800 
    801             pj_list_push_back(&msg_data.hdr_list, &hcontact); 
     801            pj_list_push_back(&msg_data_.hdr_list, &hcontact); 
    802802        } 
    803803 
     
    813813        } 
    814814 
    815         pjsua_call_answer2(current_call, &call_opt, st_code, NULL, &msg_data); 
     815        pjsua_call_answer2(current_call, &call_opt, st_code, NULL, &msg_data_); 
    816816    } 
    817817} 
     
    10801080        pjsua_call_info ci; 
    10811081        input_result result; 
    1082         pjsua_msg_data msg_data; 
     1082        pjsua_msg_data msg_data_; 
    10831083 
    10841084        pjsua_call_get_info(current_call, &ci); 
     
    10951095        } 
    10961096 
    1097         pjsua_msg_data_init(&msg_data); 
     1097        pjsua_msg_data_init(&msg_data_); 
    10981098        if (no_refersub) { 
    10991099            /* Add Refer-Sub: false in outgoing REFER request */ 
    11001100            pjsip_generic_string_hdr_init2(&refer_sub, &STR_REFER_SUB, 
    11011101                &STR_FALSE); 
    1102             pj_list_push_back(&msg_data.hdr_list, &refer_sub); 
     1102            pj_list_push_back(&msg_data_.hdr_list, &refer_sub); 
    11031103        } 
    11041104        if (result.nb_result != PJSUA_APP_NO_NB) { 
     
    11081108                pjsua_buddy_info binfo; 
    11091109                pjsua_buddy_get_info(result.nb_result-1, &binfo); 
    1110                 pjsua_call_xfer( current_call, &binfo.uri, &msg_data); 
     1110                pjsua_call_xfer( current_call, &binfo.uri, &msg_data_); 
    11111111            } 
    11121112 
     
    11141114            pj_str_t tmp; 
    11151115            tmp = pj_str(result.uri_result); 
    1116             pjsua_call_xfer( current_call, &tmp, &msg_data); 
     1116            pjsua_call_xfer( current_call, &tmp, &msg_data_); 
    11171117        } 
    11181118    } 
     
    11311131        pjsua_call_id ids[PJSUA_MAX_CALLS]; 
    11321132        pjsua_call_info ci; 
    1133         pjsua_msg_data msg_data; 
     1133        pjsua_msg_data msg_data_; 
    11341134        char buf[128]; 
    11351135        unsigned i, count; 
     
    11901190        } 
    11911191 
    1192         pjsua_msg_data_init(&msg_data); 
     1192        pjsua_msg_data_init(&msg_data_); 
    11931193        if (no_refersub) { 
    11941194            /* Add Refer-Sub: false in outgoing REFER request */ 
    11951195            pjsip_generic_string_hdr_init2(&refer_sub, &STR_REFER_SUB, 
    11961196                                           &STR_FALSE); 
    1197             pj_list_push_back(&msg_data.hdr_list, &refer_sub); 
     1197            pj_list_push_back(&msg_data_.hdr_list, &refer_sub); 
    11981198        } 
    11991199 
    12001200        pjsua_call_xfer_replaces(call, dst_call, 
    12011201                                 PJSUA_XFER_NO_REQUIRE_REPLACES, 
    1202                                  &msg_data); 
     1202                                 &msg_data_); 
    12031203    } 
    12041204} 
     
    12631263        for (i=0; i<digits.slen; ++i) { 
    12641264            char body[80]; 
    1265             pjsua_msg_data msg_data; 
     1265            pjsua_msg_data msg_data_; 
    12661266 
    12671267            pjsua_msg_data_init(&msg_data); 
    1268             msg_data.content_type = pj_str("application/dtmf-relay"); 
     1268            msg_data_.content_type = pj_str("application/dtmf-relay"); 
    12691269 
    12701270            pj_ansi_snprintf(body, sizeof(body), 
     
    12721272                "Duration=160", 
    12731273                buf[i]); 
    1274             msg_data.msg_body = pj_str(body); 
     1274            msg_data_.msg_body = pj_str(body); 
    12751275 
    12761276            status = pjsua_call_send_request(current_call, &SIP_INFO, 
    1277                 &msg_data); 
     1277                                             &msg_data_); 
    12781278            if (status != PJ_SUCCESS) { 
    12791279                return; 
Note: See TracChangeset for help on using the changeset viewer.