Author: pfg
Date: Wed Jan  6 16:32:39 2016
New Revision: 293238
URL: https://svnweb.freebsd.org/changeset/base/293238

Log:
  MFC   r292877:
  pax: prevent possible buffer overflow
  
  Or at least quiet down some static analyzers about it.
  
  CID:  978835
  Obtained from:        OpenBSD

Modified:
  stable/10/bin/pax/pat_rep.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/bin/pax/pat_rep.c
==============================================================================
--- stable/10/bin/pax/pat_rep.c Wed Jan  6 16:27:17 2016        (r293237)
+++ stable/10/bin/pax/pat_rep.c Wed Jan  6 16:32:39 2016        (r293238)
@@ -878,7 +878,7 @@ rep_name(char *name, int *nlen, int prnt
         * (the user already saw that substitution go by)
         */
        pt = rephead;
-       (void)strcpy(buf1, name);
+       (void)strlcpy(buf1, name, sizeof(buf1));
        inpt = buf1;
        outpt = nname;
        endpt = outpt + PAXPATHLEN;
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to