svn commit: r318141 - head/usr.bin/mkuzip

Alan Somers asomers at FreeBSD.org
Wed May 10 15:27:38 UTC 2017


Author: asomers
Date: Wed May 10 15:27:36 2017
New Revision: 318141
URL: https://svnweb.freebsd.org/changeset/base/318141

Log:
  strcpy => strlcpy
  
  Reported by:	Coverity
  CID:		1352771
  MFC after:	3 weeks
  Sponsored by:	Spectra Logic Corp

Modified:
  head/usr.bin/mkuzip/mkuzip.c

Modified: head/usr.bin/mkuzip/mkuzip.c
==============================================================================
--- head/usr.bin/mkuzip/mkuzip.c	Wed May 10 15:20:39 2017	(r318140)
+++ head/usr.bin/mkuzip/mkuzip.c	Wed May 10 15:27:36 2017	(r318141)
@@ -192,7 +192,8 @@ int main(int argc, char **argv)
 		/* Not reached */
 	}
 
-	strcpy(hdr.magic, cfs.handler->magic);
+	assert(strlcpy(hdr.magic, cfs.handler->magic, sizeof(hdr.magic))
+	    < sizeof(hdr.magic));
 
 	if (cfs.en_dedup != 0) {
 		hdr.magic[CLOOP_OFS_VERSN] = CLOOP_MAJVER_3;


More information about the svn-src-head mailing list