svn commit: r252637 - head/usr.bin/patch

David E. O'Brien obrien at FreeBSD.org
Wed Jul 3 22:46:30 UTC 2013


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;


More information about the svn-src-all mailing list