Changeset 4880


Ignore:
Timestamp:
Jul 18, 2014 6:19:55 AM (10 years ago)
Author:
nanang
Message:

Misc (re #1751): Fixed missing initialization in pjsua2 TlsConfig::toPj() and TransportConfig::toPj() may cause transport creation failure (thanks Sneha Bansal for the report).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua2/siptypes.cpp

    r4761 r4880  
    158158{ 
    159159    pjsip_tls_setting ts; 
     160    pjsip_tls_setting_default(&ts); 
    160161 
    161162    ts.ca_list_file     = str2Pj(this->CaListFile); 
     
    261262{ 
    262263    pjsua_transport_config tc; 
     264    pjsua_transport_config_default(&tc); 
    263265 
    264266    tc.port             = this->port; 
Note: See TracChangeset for help on using the changeset viewer.