tweaks: elide an unneeded variable
parent
15e36956b5
commit
787dca6724
|
@ -541,7 +541,6 @@ char *mbstrchr(const char *s, const char *c)
|
||||||
#ifdef ENABLE_UTF8
|
#ifdef ENABLE_UTF8
|
||||||
if (use_utf8) {
|
if (use_utf8) {
|
||||||
bool bad_s_mb = FALSE, bad_c_mb = FALSE;
|
bool bad_s_mb = FALSE, bad_c_mb = FALSE;
|
||||||
const char *q = s;
|
|
||||||
wchar_t ws, wc;
|
wchar_t ws, wc;
|
||||||
|
|
||||||
if (mbtowc(&wc, c, MAXCHARLEN) < 0) {
|
if (mbtowc(&wc, c, MAXCHARLEN) < 0) {
|
||||||
|
@ -561,13 +560,12 @@ char *mbstrchr(const char *s, const char *c)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
s += sym_len;
|
s += sym_len;
|
||||||
q += sym_len;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (*s == '\0')
|
if (*s == '\0')
|
||||||
q = NULL;
|
return NULL;
|
||||||
|
|
||||||
return (char *)q;
|
return (char *)s;
|
||||||
} else
|
} else
|
||||||
#endif
|
#endif
|
||||||
return (char *)strchr(s, *c);
|
return (char *)strchr(s, *c);
|
||||||
|
|
Loading…
Reference in New Issue