[PATCH 2/28] UML - Use va_end wherever va_args are used

From: Jeff Dike
Date: Mon Jan 10 2005 - 00:16:08 EST


Finish using va_list correctly, by calling va_end.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@xxxxxxxx>
Signed-off-by: Jeff Dike <jdike@xxxxxxxxxxx>

Index: 2.6.10/arch/um/kernel/signal_user.c
===================================================================
--- 2.6.10.orig/arch/um/kernel/signal_user.c 2004-12-14 12:10:30.000000000 -0500
+++ 2.6.10/arch/um/kernel/signal_user.c 2004-12-14 15:51:35.000000000 -0500
@@ -41,6 +41,7 @@
while((mask = va_arg(ap, int)) != -1){
sigaddset(&action.sa_mask, mask);
}
+ va_end(ap);
action.sa_flags = flags;
action.sa_restorer = NULL;
if(sigaction(sig, &action, NULL) < 0)
Index: 2.6.10/arch/um/kernel/tt/tracer.c
===================================================================
--- 2.6.10.orig/arch/um/kernel/tt/tracer.c 2004-12-14 12:14:46.000000000 -0500
+++ 2.6.10/arch/um/kernel/tt/tracer.c 2004-12-14 15:51:35.000000000 -0500
@@ -84,6 +84,7 @@

va_start(ap, format);
vprintf(format, ap);
+ va_end(ap);
printf("\n");
while(1) pause();
}

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/