Not hang in the downcase routine.
Submitted by: Trevor Blackwell tlb@viaweb.com 2.1.6/2.2 Candidate
This commit is contained in:
parent
00f1098194
commit
5402df3cfa
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=19438
@ -59,7 +59,8 @@ downcase (s)
|
||||
while ((c = *s) != '\0')
|
||||
{
|
||||
if (isalpha (c))
|
||||
*s++ = tolower (c);
|
||||
*s = tolower (c);
|
||||
s++;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user