Commit b2a6c79f authored by Dag Haavi Finstad's avatar Dag Haavi Finstad

Fix tiny memory leak in vdir.c

parent 6d71c1f9
......@@ -88,6 +88,7 @@ vdir_delete(struct vdir **vdp)
free(vd->backend);
free(vd->weight);
AZ(pthread_mutex_destroy(&vd->mtx));
free(vd->dir->vcl_name);
FREE_OBJ(vd->dir);
vbit_destroy(vd->vbm);
FREE_OBJ(vd);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment