public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Replace strncpy with memccpy to fix -Wstringop-truncation.
@ 2018-03-23  1:07 Khem Raj
  2018-03-23  1:17 ` Joseph Myers
  0 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2018-03-23  1:07 UTC (permalink / raw)
  To: libc-alpha; +Cc: Khem Raj

	* nis/nss_nisplus/nisplus-parser.c: Replace strncpy with memcpy to
	avoid -Wstringop-truncation.
---
2018-03-22  Khem Raj  <raj.khem@gmail.com>

        * nis/nss_nisplus/nisplus-parser.c (_nss_nisplus_parse_pwent): Replace
        strncpy with memcpy to avoid -Wstringop-truncation.

 nis/nss_nisplus/nisplus-parser.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nis/nss_nisplus/nisplus-parser.c b/nis/nss_nisplus/nisplus-parser.c
index 8dc021e73d..b53284f889 100644
--- a/nis/nss_nisplus/nisplus-parser.c
+++ b/nis/nss_nisplus/nisplus-parser.c
@@ -87,7 +87,7 @@ _nss_nisplus_parse_pwent (nis_result *result, struct passwd *pw,
       if (len >= room_left)
 	goto no_more_room;
 
-      strncpy (first_unused, numstr, len);
+      memcpy (first_unused, numstr, len);
       first_unused[len] = '\0';
       numstr = first_unused;
     }
@@ -103,7 +103,7 @@ _nss_nisplus_parse_pwent (nis_result *result, struct passwd *pw,
       if (len >= room_left)
 	goto no_more_room;
 
-      strncpy (first_unused, numstr, len);
+      memcpy (first_unused, numstr, len);
       first_unused[len] = '\0';
       numstr = first_unused;
     }
-- 
2.16.2

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

end of thread, other threads:[~2018-04-19 14:30 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-23  1:07 [PATCH] Replace strncpy with memccpy to fix -Wstringop-truncation Khem Raj
2018-03-23  1:17 ` Joseph Myers
2018-03-23  1:30   ` Khem Raj
2018-04-05 15:57     ` Stefan Liebler
2018-04-05 16:14       ` Andreas Schwab
2018-04-12 15:31         ` Stefan Liebler
2018-04-19 14:30           ` Stefan Liebler

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).