mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00
tokenizer: use signed char where needed
This commit is contained in:
parent
b45f224b2a
commit
dbbcf43c18
1 changed files with 2 additions and 1 deletions
|
@ -3027,7 +3027,8 @@ lws_tokenize(struct lws_tokenize *ts)
|
|||
{
|
||||
const char *rfc7230_delims = "(),/:;<=>?@[\\]{}";
|
||||
lws_tokenize_state state = LWS_TOKZS_LEADING_WHITESPACE;
|
||||
char c, num = -1, flo = 0;
|
||||
char c, flo = 0;
|
||||
signed char num = -1;
|
||||
int utf8 = 0;
|
||||
|
||||
ts->token = NULL;
|
||||
|
|
Loading…
Add table
Reference in a new issue