Skip to content

Commit

Permalink
revoke ec63726
Browse files Browse the repository at this point in the history
  • Loading branch information
rockdaboot committed Nov 14, 2014
1 parent ad0cbba commit c8a9d2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/psl.c
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ const char *psl_registrable_domain(const psl_ctx_t *psl, const char *domain)

static int _str_is_ascii(const char *s)
{
while (((unsigned char)*s) < 128) s++;
while (*s > 0 && *s < 128) s++;

return !*s;
}
Expand Down

0 comments on commit c8a9d2d

Please sign in to comment.