Line 153 - 157
...
153: size_t outbase_length = strlen (outbase);
154: size_t outfile_length = outbase_length + suffix_length;
155: if (outfile_length + 1 < outbase_length)
156: xalloc_die ();
157: outfile = xmalloc (outfile_length + 1);
...If suffix_length SIZE_MAX the check on line 155 is bypassed. _______________________________________________ Bug-coreutils mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-coreutils
