Custom Query (2195 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (34 - 36 of 2195)

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Ticket Resolution Summary Owner Reporter
#440 fixed pj_timer_entry_init() doesn't initialize timer ID bennylp bennylp
Description

See the discussion in http://www.pjsip.org/pipermail/pjsip/2007-August/004183.html

#1513 fixed pj_pool_safe_release() API bennylp bennylp
Description

The common pattern to release pool:

  pj_pool_t *tmp_pool = obj->pool;
  obj->pool = NULL;
  pj_pool_release(tmp_pool);

should go into an API:

  pj_pool_safe_release(pj_pool_t **p_pool);

Thanks Bogdan Krakowski for suggestion.

#144 fixed pj_ioqueue_poll() blocks forever because of invalid timeout value (thanks Igor S) bennylp bennylp
Description

On Linux, when pjsip_endpt_handle_events() is given NULL as the timeout parameter, it will cause pj_ioqueue_poll() to block forever even when there is incoming packet on the socket.

This happens because select() is given a large or probably negative usec value in timeval argument.

Thanks Igor S for spotting the problem.

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Note: See TracQuery for help on using queries.