Blame SOURCES/tftp-hpa-0.49-fortify-strcpy-crash.patch

ecbeaa
diff -urN tftp-hpa-0.49.orig/tftp/tftp.c tftp-hpa-0.49/tftp/tftp.c
ecbeaa
--- tftp-hpa-0.49.orig/tftp/tftp.c	2008-10-20 18:08:31.000000000 -0400
ecbeaa
+++ tftp-hpa-0.49/tftp/tftp.c	2009-08-05 09:47:18.072585848 -0400
ecbeaa
@@ -279,15 +279,16 @@
ecbeaa
             struct tftphdr *tp, const char *mode)
ecbeaa
 {
ecbeaa
     char *cp;
ecbeaa
+    size_t len;
ecbeaa
 
ecbeaa
     tp->th_opcode = htons((u_short) request);
ecbeaa
     cp = (char *)&(tp->th_stuff);
ecbeaa
-    strcpy(cp, name);
ecbeaa
-    cp += strlen(name);
ecbeaa
-    *cp++ = '\0';
ecbeaa
-    strcpy(cp, mode);
ecbeaa
-    cp += strlen(mode);
ecbeaa
-    *cp++ = '\0';
ecbeaa
+    len = strlen(name) + 1;
ecbeaa
+    memcpy(cp, name, len);
ecbeaa
+    cp += len;
ecbeaa
+    len = strlen(mode) + 1;
ecbeaa
+    memcpy(cp, mode, len);
ecbeaa
+    cp += len;
ecbeaa
     return (cp - (char *)tp);
ecbeaa
 }
ecbeaa