Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix spaces not being repeatedly eaten during parsing #148

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions parse_date.re
Original file line number Diff line number Diff line change
Expand Up @@ -661,20 +661,21 @@ static timelib_long timelib_get_month(const char **ptr)

static void timelib_eat_spaces(const char **ptr)
{
do {
/* Repetition is safe because it will fail as soon as a '\0' is encountered. */
again: {
if (**ptr == ' ' || **ptr == '\t') {
++*ptr;
continue;
goto again;
}
if ((*ptr)[0] == '\xe2' && (*ptr)[1] == '\x80' && (*ptr)[2] == '\xaf') { // NNBSP
*ptr += 3;
continue;
goto again;
}
if ((*ptr)[0] == '\xc2' && (*ptr)[1] == '\xa0') { // NBSP
*ptr += 2;
continue;
goto again;
}
} while (false);
}
}

static void timelib_eat_until_separator(const char **ptr)
Expand Down