| 78 | } |
| 79 | |
| 80 | void cachedb_free_url(struct cachedb_url *list) |
| 81 | { |
| 82 | struct cachedb_url *it=list,*aux; |
| 83 | |
| 84 | while (it){ |
| 85 | aux = it->next; |
| 86 | pkg_free(it); |
| 87 | it=aux; |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | static struct cachedb_engine_t* cachedb_list = NULL; |
| 92 |
no outgoing calls
no test coverage detected