Merge branch 'tb/char-may-be-unsigned' into maint

Build portability fix.

* tb/char-may-be-unsigned:
  path.c: char is not (always) signed
This commit is contained in:
Junio C Hamano 2018-11-21 22:58:09 +09:00
commit 85eb0f162c

2
path.c
View File

@ -1369,7 +1369,7 @@ only_spaces_and_periods:
saw_tilde = 1;
} else if (i >= 6)
return 0;
else if (name[i] < 0) {
else if (name[i] & 0x80) {
/*
* We know our needles contain only ASCII, so we clamp
* here to make the results of tolower() sane.