зеркало из https://github.com/github/putty.git
Martin Trautmann spotted a bare char being passed to isspace.
[originally from svn r5536]
This commit is contained in:
Родитель
deadab0900
Коммит
7e715c5aaf
2
misc.c
2
misc.c
|
@ -24,7 +24,7 @@ unsigned long parse_blocksize(const char *bs)
|
|||
char *suf;
|
||||
unsigned long r = strtoul(bs, &suf, 10);
|
||||
if (*suf != '\0') {
|
||||
while (isspace(*suf)) suf++;
|
||||
while (*suf && isspace((unsigned char)*suf)) suf++;
|
||||
switch (*suf) {
|
||||
case 'k': case 'K':
|
||||
r *= 1024ul;
|
||||
|
|
Загрузка…
Ссылка в новой задаче