md5.c
changeset 148 8a5cf98a00b6
parent 77 49e0babccb23
child 162 fad55be2d07c
--- a/md5.c
+++ b/md5.c
@@ -29,8 +29,8 @@
     /*
      * MD5 alters the input buffer
      */
-    strcpy (buffer, argv[1]);
-    strcpy (text, argv[1]);
+    strncpy (buffer, argv[1], sizeof (buffer));
+    strncpy (text, argv[1], sizeof (buffer));
 
     md5_hash = MD5 ((u_char *) buffer, strlen (buffer), NULL);