Messages in this thread Patch in this message |  | | From | Przemysław Głębocki <> | Subject | [PATCH] audit: fixed a braces coding style issue | Date | Sat, 22 Sep 2018 01:38:22 +0200 |
| |
Fixed a coding style issue.
Signed-off-by: Przemysław Głębocki <glebocki.przemyslaw@gmail.com> --- kernel/audit_tree.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/kernel/audit_tree.c b/kernel/audit_tree.c index ea43181cde4a..3d0e45fa765d 100644 --- a/kernel/audit_tree.c +++ b/kernel/audit_tree.c @@ -112,10 +112,9 @@ static void free_chunk(struct audit_chunk *chunk) { int i; - for (i = 0; i < chunk->count; i++) { + for (i = 0; i < chunk->count; i++) if (chunk->owners[i].owner) put_tree(chunk->owners[i].owner); - } kfree(chunk); } -- 2.17.1
|  |