performed in aclChecklistCreate().
In a nutshell, this wasn't a memory leak, but it was a lock-leak -
the acl itself wasn't being freed, but the refcount slowly crept
upwards.
/*
- * $Id: acl.cc,v 1.290 2002/10/13 23:48:23 hno Exp $
+ * $Id: acl.cc,v 1.291 2002/10/24 23:22:29 adrian Exp $
*
* DEBUG: section 28 Access Control
* AUTHOR: Duane Wessels
requestUnlink(checklist->request);
checklist->request = NULL;
cbdataReferenceDone(checklist->conn);
+ cbdataReferenceDone(checklist->accessList);
aclCheckCleanup(checklist);
cbdataFree(checklist);
}