mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
r8692@Kushana: nickm | 2006-08-31 13:38:07 -0400
Fix bug 327 (part 2): Cast char to unsigned char before passing to toupper/tolower. (Follow the same idiom as with isupper and friends, in case we run into the same problem on SGI or whereever it was.) svn:r8310
This commit is contained in:
parent
bc0c39f85d
commit
f170e5798f
@ -155,6 +155,9 @@ const void *tor_memmem(const void *haystack, size_t hlen, const void *needle,
|
||||
#define TOR_ISLOWER(c) islower((int)(unsigned char)(c))
|
||||
#define TOR_ISUPPER(c) isupper((int)(unsigned char)(c))
|
||||
|
||||
#define TOR_TOLOWER(c) ((char)tolower((int)(unsigned char)(c)))
|
||||
#define TOR_TOUPPER(c) ((char)toupper((int)(unsigned char)(c)))
|
||||
|
||||
#ifdef MS_WINDOWS
|
||||
#define _SHORT_FILE_ (tor_fix_source_file(__FILE__))
|
||||
const char *tor_fix_source_file(const char *fname);
|
||||
|
@ -824,7 +824,7 @@ strmap_remove_lc(strmap_t *map, const char *key)
|
||||
* iter = strmap_iter_next_rmv(iter);
|
||||
* free(val);
|
||||
* } else {
|
||||
* for (;*cp;cp++) *cp = toupper(*cp);
|
||||
* for (;*cp;cp++) *cp = TOR_TOUPPER(*cp);
|
||||
* iter = strmap_iter_next(iter);
|
||||
* }
|
||||
* }
|
||||
|
@ -308,7 +308,7 @@ void
|
||||
tor_strlower(char *s)
|
||||
{
|
||||
while (*s) {
|
||||
*s = tolower(*s);
|
||||
*s = TOR_TOLOWER(*s);
|
||||
++s;
|
||||
}
|
||||
}
|
||||
@ -319,7 +319,7 @@ void
|
||||
tor_strupper(char *s)
|
||||
{
|
||||
while (*s) {
|
||||
*s = toupper(*s);
|
||||
*s = TOR_TOUPPER(*s);
|
||||
++s;
|
||||
}
|
||||
}
|
||||
|
@ -1737,7 +1737,7 @@ get_default_nickname(void)
|
||||
*cp = '\0';
|
||||
break;
|
||||
}
|
||||
*cp = tolower(*cp);
|
||||
*cp = TOR_TOLOWER(*cp);
|
||||
}
|
||||
|
||||
/* Strip invalid characters. */
|
||||
|
@ -1279,7 +1279,7 @@ router_parse_addr_policy_from_string(const char *s, int assume_action)
|
||||
len = strlen(s);
|
||||
cp = tmp = tor_malloc(len+2);
|
||||
for (idx = 0; idx < len; ++idx) {
|
||||
tmp[idx] = tolower(s[idx]);
|
||||
tmp[idx] = TOR_TOLOWER(s[idx]);
|
||||
}
|
||||
tmp[len]='\n';
|
||||
tmp[len+1]='\0';
|
||||
|
Loading…
Reference in New Issue
Block a user