| 949 | |
| 950 | |
| 951 | void free_reply_lump( struct lump_rpl *lump) |
| 952 | { |
| 953 | struct lump_rpl *foo, *bar; |
| 954 | for(foo=lump;foo;) |
| 955 | { |
| 956 | bar=foo->next; |
| 957 | free_lump_rpl(foo); |
| 958 | foo = bar; |
| 959 | } |
| 960 | } |
| 961 | |
| 962 | |
| 963 | /* Free only the content, not the msg structure itself |
no test coverage detected