| 91 | } |
| 92 | |
| 93 | void release_hf_struct( struct hf_wrapper *list ) |
| 94 | { |
| 95 | struct hf_wrapper *i, *j, *nexts, *nexto; |
| 96 | |
| 97 | i=list; |
| 98 | while(i) { |
| 99 | nexto=i->next_other; |
| 100 | j=i->next_same; |
| 101 | pkg_free(i); |
| 102 | /* release list of same type hf */ |
| 103 | while(j) { |
| 104 | nexts=j->next_same; |
| 105 | pkg_free(j); |
| 106 | j=nexts; |
| 107 | } |
| 108 | i=nexto; |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | /* if that is some of well-known header fields which have compact |
| 113 | * form, return canonical form ... returns 1 and sets params; |
no outgoing calls
no test coverage detected