We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c06815 commit 5498a41Copy full SHA for 5498a41
src/mbyte.c
@@ -4357,7 +4357,7 @@ enc_locale(void)
4357
else
4358
s = p + 1;
4359
}
4360
- for (i = 0; s[i] != NUL && i < (int)sizeof(buf) - 1; ++i)
+ for (i = 0; i < (int)sizeof(buf) - 1 && s[i] != NUL; ++i)
4361
{
4362
if (s[i] == '_' || s[i] == '-')
4363
buf[i] = '-';
src/version.c
@@ -758,6 +758,8 @@ static char *(features[]) =
758
759
static int included_patches[] =
760
{ /* Add new patch number below this line */
761
+/**/
762
+ 2028,
763
/**/
764
2027,
765
0 commit comments