| 477 | |
| 478 | |
| 479 | static void free_cc_flow( struct cc_flow *flow) |
| 480 | { |
| 481 | int i; |
| 482 | |
| 483 | if (flow->cid.s) |
| 484 | shm_free(flow->cid.s); |
| 485 | for( i=0 ; i<MAX_AUDIO ; i++ ) { |
| 486 | if (flow->recordings[i].s) |
| 487 | shm_free(flow->recordings[i].s); |
| 488 | } |
| 489 | shm_free(flow); |
| 490 | } |
| 491 | |
| 492 | |
| 493 | void update_cc_agent_att(struct cc_agent *agent, unsigned long duration) |
no test coverage detected