| 358 | } |
| 359 | |
| 360 | void |
| 361 | free_rt_info( |
| 362 | rt_info_t *rl, |
| 363 | osips_free_f f |
| 364 | ) |
| 365 | { |
| 366 | if(NULL == rl) |
| 367 | return; |
| 368 | if(NULL!=rl->pgwl) |
| 369 | func_free(f, rl->pgwl); |
| 370 | if(NULL!=rl->time_rec) |
| 371 | tmrec_expr_free(rl->time_rec); |
| 372 | if (rl->route_ref) |
| 373 | shm_free(rl->route_ref); |
| 374 | func_free(f, rl); |
| 375 | return; |
| 376 | } |
| 377 |
no test coverage detected