components/enscript/patches/enscript-1.6.1-CAN-2004-1186.patch
author Rich Burridge <rich.burridge@oracle.com>
Wed, 23 Jan 2013 12:17:32 -0800
changeset 1132 a62391631ea1
permissions -rw-r--r--
16170971 Move enscript from the Desktop consolidation to Userland

--- 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)