|
@@ -330,7 +330,7 @@ static const char *sip_follow_continuation(const char *dptr, const char *limit)
|
|
|
static const char *sip_skip_whitespace(const char *dptr, const char *limit)
|
|
static const char *sip_skip_whitespace(const char *dptr, const char *limit)
|
|
|
{
|
|
{
|
|
|
for (; dptr < limit; dptr++) {
|
|
for (; dptr < limit; dptr++) {
|
|
|
- if (*dptr == ' ')
|
|
|
|
|
|
|
+ if (*dptr == ' ' || *dptr == '\t')
|
|
|
continue;
|
|
continue;
|
|
|
if (*dptr != '\r' && *dptr != '\n')
|
|
if (*dptr != '\r' && *dptr != '\n')
|
|
|
break;
|
|
break;
|