components/enscript/patches/enscript-1.6.1-CAN-2004-1186.patch
author Jan Noha <jan.noha@oracle.com>
Thu, 02 Oct 2014 01:28:05 -0700
changeset 2171 b7344f27cbbc
parent 1132 a62391631ea1
permissions -rw-r--r--
15766313 SUNBT7129916 ntp man pages have blank space at the top

--- enscript-1.6.1/src/psgen.c.CAN-2004-1186	2005-01-10 15:57:07.432740602 +0000
+++ enscript-1.6.1/src/psgen.c	2005-01-10 15:58:24.606016206 +0000
@@ -1914,8 +1914,9 @@
   else
     {
       ftail++;
-      strncpy (buf, fname, ftail - fname);
-      buf[ftail - fname] = '\0';
+      i = ftail - fname >= sizeof (buf)-1 ? sizeof (buf)-1 : ftail - fname;
+      strncpy (buf, fname, i);
+      buf[i] = '\0';
     }
 
   if (nup > 1)