lkml.org 
[lkml]   [2005]   [Jan]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH 2/28] UML - Use va_end wherever va_args are used
Date
From
Finish using va_list correctly, by calling va_end.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Jeff Dike <jdike@addtoit.com>

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@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 14:09    [W:6.386 / U:0.000 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site