All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH lksctp-tools] nagle_snd: silence false-positive compiler warning
@ 2018-08-01 16:33 Marcelo Ricardo Leitner
  2018-08-02 11:37 ` Neil Horman
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Marcelo Ricardo Leitner @ 2018-08-01 16:33 UTC (permalink / raw)
  To: linux-sctp

I'm getting:
nagle_snd.c: In function ‘main’:
nagle_snd.c:275:3: warning: ‘strncpy’ output truncated before terminating nul copying 10 bytes from a string of the same length [-Wstringop-truncation]
   strncpy(message+i, "1234567890", 10);
   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Turns out the code is doing that on purpose. To silence it, lets use
memcpy() instead.

Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
---
 src/apps/nagle_snd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/apps/nagle_snd.c b/src/apps/nagle_snd.c
index 1fc788d56c6e4dd99e89f73c8eafc829efc76dc5..bc960cca04bbc3d8e22a1757daf5fce7b76a95ce 100644
--- a/src/apps/nagle_snd.c
+++ b/src/apps/nagle_snd.c
@@ -272,7 +272,7 @@ main(int argc, char *argv[])
 	message = test_malloc((size + 1) * sizeof(u_int8_t));
 
 	for(i=0; i + 10 < size; i+= 10)
-		strncpy(message+i, "1234567890", 10);
+		memcpy(message+i, "1234567890", 10);
 	strncpy(message+i, "1234567890", size-i);
 	*(message+size) = 0;
 
-- 
2.17.1


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

end of thread, other threads:[~2018-08-10 18:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-01 16:33 [PATCH lksctp-tools] nagle_snd: silence false-positive compiler warning Marcelo Ricardo Leitner
2018-08-02 11:37 ` Neil Horman
2018-08-02 13:28 ` Marcelo Ricardo Leitner
2018-08-10 18:30 ` Marcelo Ricardo Leitner

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.