diff --git a/md5.c b/md5.c --- a/md5.c +++ b/md5.c @@ -29,8 +29,8 @@ /* * MD5 alters the input buffer */ - strncpy (buffer, argv[1], sizeof (buffer)); - strncpy (text, argv[1], sizeof (buffer)); + strncpy (buffer, argv[1], sizeof (buffer) - 1); + strncpy (text, argv[1], sizeof (text) - 1); md5_hash = MD5 ((u_char *) buffer, strlen (buffer), NULL);