qssb_free_policy(): free path policies

Este commit está contenido en:
Albert S. 2021-05-15 21:26:28 +02:00
padre ad9c391e3f
commit 946492c28e
Se han modificado 1 ficheros con 7 adiciones y 0 borrados

7
qssb.h
Ver fichero

@ -415,6 +415,13 @@ int qssb_end_policy(struct qssb_policy *ctxt)
*/
void qssb_free_policy(struct qssb_policy *ctxt)
{
struct qssb_path_policy *current = ctxt->path_policies;
while(current)
{
struct qssb_path_policy *tmp = current;
current = current->next;
free(tmp);
}
free(ctxt);
}