提交 038794cf 编写于 作者: M Markus Armbruster 提交者: Anthony Liguori

acl: Free memory allocated with g_malloc() with g_free()

Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
上级 c23c15d3
...@@ -103,8 +103,8 @@ void qemu_acl_reset(qemu_acl *acl) ...@@ -103,8 +103,8 @@ void qemu_acl_reset(qemu_acl *acl)
acl->defaultDeny = 1; acl->defaultDeny = 1;
QTAILQ_FOREACH_SAFE(entry, &acl->entries, next, next_entry) { QTAILQ_FOREACH_SAFE(entry, &acl->entries, next, next_entry) {
QTAILQ_REMOVE(&acl->entries, entry, next); QTAILQ_REMOVE(&acl->entries, entry, next);
free(entry->match); g_free(entry->match);
free(entry); g_free(entry);
} }
acl->nentries = 0; acl->nentries = 0;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册