Changeset 818
- Timestamp:
- Nov 21, 2006 6:41:47 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_endpoint.c
r815 r818 542 542 endpt->ioqueue = NULL; 543 543 } 544 if (endpt->timer_heap) { 545 pj_timer_heap_destroy(endpt->timer_heap); 546 endpt->timer_heap = NULL; 547 } 544 548 if (endpt->mutex) { 545 549 pj_mutex_destroy(endpt->mutex); … … 578 582 /* Destroy ioqueue */ 579 583 pj_ioqueue_destroy(endpt->ioqueue); 584 585 /* Destroy timer heap */ 586 pj_timer_heap_destroy(endpt->timer_heap); 580 587 581 588 /* Delete endpoint mutex. */
Note: See TracChangeset
for help on using the changeset viewer.