| 342 | } |
| 343 | |
| 344 | void |
| 345 | del_rt_list( |
| 346 | rt_info_wrp_t *rwl, |
| 347 | osips_free_f f |
| 348 | ) |
| 349 | { |
| 350 | rt_info_wrp_t* t=rwl; |
| 351 | while(rwl!=NULL) { |
| 352 | t=rwl; |
| 353 | rwl=rwl->next; |
| 354 | if ( (--t->rtl->ref_cnt)==0) |
| 355 | free_rt_info(t->rtl, f); |
| 356 | func_free(f, t); |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | void |
| 361 | free_rt_info( |
no test coverage detected