The patch titled
audit: complement va_copy with va_end()
has been added to the -mm tree. Its filename is
kernel-compliment-va_copy-with-va_end.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: audit: complement va_copy with va_end()
From: Richard Knutsson <[EMAIL PROTECTED]>
Complement va_copy() with va_end().
Signed-off-by: Richard Knutsson <[EMAIL PROTECTED]>
Cc: Al Viro <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
kernel/audit.c | 1 +
1 file changed, 1 insertion(+)
diff -puN kernel/audit.c~kernel-compliment-va_copy-with-va_end kernel/audit.c
--- a/kernel/audit.c~kernel-compliment-va_copy-with-va_end
+++ a/kernel/audit.c
@@ -1245,6 +1245,7 @@ static void audit_log_vformat(struct aud
goto out;
len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args2);
}
+ va_end(args2);
if (len > 0)
skb_put(skb, len);
out:
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
kernel-compliment-va_copy-with-va_end.patch
net-irda-parametersc-trivial-fixes.patch
dio-array_size-cleanup-update.patch
dio-array_size-cleanup-update-checkpatch-fixes.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html