Mirror of the gdb mailing list
 help / color / mirror / Atom feed
* [RFC] xnsprintf()
@ 2005-03-13 14:49 Mark Kettenis
  2005-03-13 15:41 ` Daniel Jacobowitz
  0 siblings, 1 reply; 5+ messages in thread
From: Mark Kettenis @ 2005-03-13 14:49 UTC (permalink / raw)
  To: gdb

The bootdisk of my workstation crashed, so I found myself replacing my
aging FreeBSD environment with a fresh OpenBSD snapshot.  The OpenBSD
toolchain complains about using dangerous functions like snprintf:

   libgdb.a(remote.o)(.text+0xb3b): In function `set_thread':
   ../../src/gdb/remote.c:1066: warning: sprintf() is often misused,
   please use snprintf()

Of course it is right, so I've started converting sprintf() into
snprintf().  While doing so, I find myself writing the following bit
of code over and over again:

   int size;
   size = snprintf (buf, sizeof buf, ...);
   gdb_assert (size < sizeof buf);

So right now I'm wondering whether we should have a function, say
xsnprintf(), that checks whether the string fits in the buffer, and
throws an internal-error if it doesn't.

Opinions?

Mark


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

end of thread, other threads:[~2005-04-08 23:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-03-13 14:49 [RFC] xnsprintf() Mark Kettenis
2005-03-13 15:41 ` Daniel Jacobowitz
2005-03-16  0:27   ` Kevin Buettner
2005-04-08 23:33   ` Andrew Cagney
2005-04-08 23:39     ` Daniel Jacobowitz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox