On 12/26/2016 04:18 PM, Nicolas Iooss wrote:
Elements which are inserted into a queue_t object are either NULL (from insert_separator()) or strings allocated with malloc() in insert_id(). They would be freed if there are still present in the queue when it is destroyed. Otherwise the memory allocated for these elements would be leaked. Signed-off-by: Nicolas Iooss <nicolas.iooss@xxxxxxx>
Applied. Thanks,
--- checkpolicy/queue.c | 1 + 1 file changed, 1 insertion(+) diff --git a/checkpolicy/queue.c b/checkpolicy/queue.c index 272079c0debe..acc991c63303 100644 --- a/checkpolicy/queue.c +++ b/checkpolicy/queue.c @@ -113,6 +113,7 @@ void queue_destroy(queue_t q) p = q->head; while (p != NULL) { + free(p->element); temp = p; p = p->next; free(temp);
-- James Carter <jwcart2@xxxxxxxxxxxxx> National Security Agency _______________________________________________ Selinux mailing list Selinux@xxxxxxxxxxxxx To unsubscribe, send email to Selinux-leave@xxxxxxxxxxxxx. To get help, send an email containing "help" to Selinux-request@xxxxxxxxxxxxx.