All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] vsprintf.c cleanups
@ 2005-02-24 23:16 Brian Gerst
  2005-02-25  0:59 ` Horst von Brand
  0 siblings, 1 reply; 6+ messages in thread
From: Brian Gerst @ 2005-02-24 23:16 UTC (permalink / raw)
  To: Andrew Morton; +Cc: lkml

[-- Attachment #1: Type: text/plain, Size: 207 bytes --]

- Make sprintf call vsnprintf directly
- use INT_MAX for sprintf and vsprintf

Signed-off-by: Brian Gerst <bgerst@didntduck.org>

  vsprintf.c |    4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


[-- Attachment #2: vsprintf.diff --]
[-- Type: text/plain, Size: 555 bytes --]

diff -urN linux-2.6.11-rc5/lib/vsprintf.c linux/lib/vsprintf.c
--- linux-2.6.11-rc5/lib/vsprintf.c	2004-08-24 08:43:15.000000000 -0400
+++ linux/lib/vsprintf.c	2005-02-24 17:59:28.000000000 -0500
@@ -580,7 +580,7 @@
  */
 int vsprintf(char *buf, const char *fmt, va_list args)
 {
-	return vsnprintf(buf, (~0U)>>1, fmt, args);
+	return vsnprintf(buf, INT_MAX, fmt, args);
 }
 
 EXPORT_SYMBOL(vsprintf);
@@ -601,7 +601,7 @@
 	int i;
 
 	va_start(args, fmt);
-	i=vsprintf(buf,fmt,args);
+	i=vsnprintf(buf, INT_MAX, fmt, args);
 	va_end(args);
 	return i;
 }

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2005-02-27  8:13 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-02-24 23:16 [PATCH] vsprintf.c cleanups Brian Gerst
2005-02-25  0:59 ` Horst von Brand
2005-02-25 12:28   ` Brian Gerst
2005-02-25 12:34     ` Arjan van de Ven
2005-02-25 13:37     ` Horst von Brand
2005-02-27  8:12       ` Geert Uytterhoeven

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.