- Timestamp:
- Jan 17, 2020 12:59:51 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_transport_tcp.c
r5984 r6136 682 682 683 683 /* Create group lock */ 684 status = pj_grp_lock_create(pool, NULL, &tcp->grp_lock); 684 status = pj_grp_lock_create_w_handler(pool, NULL, tcp, &tcp_on_destroy, 685 &tcp->grp_lock); 685 686 if (status != PJ_SUCCESS) 686 687 goto on_error; 687 688 688 689 pj_grp_lock_add_ref(tcp->grp_lock); 689 pj_grp_lock_add_handler(tcp->grp_lock, pool, tcp, &tcp_on_destroy);690 690 691 691 tcp->base.grp_lock = tcp->grp_lock;
Note: See TracChangeset
for help on using the changeset viewer.