Ignore:
Timestamp:
Jun 13, 2018 4:58:49 PM (6 years ago)
Author:
riza
Message:

Re #2119 (closed): Don't raise assert when receiving an incoming call with no
pjsua account available.

File:
1 edited

Legend:

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

    r5373 r5805  
    210210            } 
    211211 
    212  
    213             (*pjsua_var.ua_cfg.cb.on_typing2)(call_id, from, to, &contact, 
    214                                               is_typing, rdata, acc_id); 
     212            if (acc_id != PJSUA_INVALID_ID) { 
     213                (*pjsua_var.ua_cfg.cb.on_typing2)(call_id, from, to, &contact, 
     214                                                  is_typing, rdata, acc_id); 
     215            } 
    215216        } 
    216217 
     
    259260            } 
    260261 
    261             (*pjsua_var.ua_cfg.cb.on_pager2)(call_id, from, to, &contact,  
    262                                              &mime_type, &text_body, rdata, 
    263                                              acc_id); 
     262            if (acc_id != PJSUA_INVALID_ID) { 
     263                (*pjsua_var.ua_cfg.cb.on_pager2)(call_id, from, to, &contact, 
     264                                                 &mime_type, &text_body, rdata, 
     265                                                 acc_id); 
     266            } 
    264267        } 
    265268    } 
Note: See TracChangeset for help on using the changeset viewer.