Author: obrien
Date: Wed Jul  3 22:46:30 2013
New Revision: 252637
URL: http://svnweb.freebsd.org/changeset/base/252637

Log:
  Merge r252513 from src/gnu/usr.bin/patch into src/usr.bin/patch:
  
  Properly handle input lines containing NUL characters such that pgets()
  accurately fills the read buffer.
  
  Callers of pgets() still mis-process the buffer contents if the read line
  contains NUL characters, but this at least makes pgets() accurate.

Modified:
  head/usr.bin/patch/pch.c

Modified: head/usr.bin/patch/pch.c
==============================================================================
--- head/usr.bin/patch/pch.c    Wed Jul  3 22:44:26 2013        (r252636)
+++ head/usr.bin/patch/pch.c    Wed Jul  3 22:46:30 2013        (r252637)
@@ -1204,7 +1204,7 @@ pgets(bool do_indent)
                                        indent++;
                        }
                }
-               strncpy(buf, line, len - skipped);
+               memcpy(buf, line, len - skipped);
                buf[len - skipped] = '\0';
        }
        return len;
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to