diff options
author | Jesper Juhl <jesper.juhl@gmail.com> | 2006-06-27 05:55:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-27 20:32:48 -0400 |
commit | 9a66a53f558efc2619a438278d2919b3c9a7f673 (patch) | |
tree | c3d20628f1d688f6099556995b597ef629970f7f /kernel/auditsc.c | |
parent | 4ad98457aa545bc4d03d417da86325507aa586ec (diff) |
[PATCH] Remove redundant NULL checks before [kv]free - in kernel/
Remove redundant kfree NULL checks from kernel/
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/auditsc.c')
-rw-r--r-- | kernel/auditsc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/auditsc.c b/kernel/auditsc.c index bdfb580a067b..dc5e3f01efe7 100644 --- a/kernel/auditsc.c +++ b/kernel/auditsc.c | |||
@@ -658,8 +658,7 @@ static void audit_log_task_context(struct audit_buffer *ab) | |||
658 | return; | 658 | return; |
659 | 659 | ||
660 | error_path: | 660 | error_path: |
661 | if (ctx) | 661 | kfree(ctx); |
662 | kfree(ctx); | ||
663 | audit_panic("error in audit_log_task_context"); | 662 | audit_panic("error in audit_log_task_context"); |
664 | return; | 663 | return; |
665 | } | 664 | } |