* Free linked list of parameters */
| 445 | * Free linked list of parameters |
| 446 | */ |
| 447 | static inline void do_free_params(param_t* _p, int _shm) |
| 448 | { |
| 449 | param_t* ptr; |
| 450 | |
| 451 | while(_p) { |
| 452 | ptr = _p; |
| 453 | _p = _p->next; |
| 454 | if (_shm) shm_free(ptr); |
| 455 | else pkg_free(ptr); |
| 456 | } |
| 457 | } |
| 458 | |
| 459 | |
| 460 | /* |
no test coverage detected