]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(split_3): Correct test for 35-byte line to accomodate
authorJim Meyering <jim@meyering.net>
Thu, 4 Jul 1996 04:22:25 +0000 (04:22 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 4 Jul 1996 04:22:25 +0000 (04:22 +0000)
fact that leading blanks may be stripped.

src/md5sum.c

index 31cd521555027d36905c95f8df37a30c50cf7103..f55ca34ce550a16134b17be9b7ed11e16a26229c 100644 (file)
@@ -140,9 +140,9 @@ split_3 (char *s, size_t s_len, char **u, int *binary, char **w)
   while (ISWHITE (s[i]))
     ++i;
 
-  /* The line has to be at least 35 characters long to contain correct
+  /* The line must have at least 35 more characters to contain correct
      message digest information.  */
-  if (s_len >= 32 + 2 + 1)
+  if (s_len - i >= 32 + 2 + 1)
     {
       char *p;
       *u = &s[i];