Skip to content
Open
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
5 changes: 5 additions & 0 deletions src/internal.c
Original file line number Diff line number Diff line change
Expand Up @@ -13199,6 +13199,11 @@ int MatchDomainName(const char* pattern, int patternLen, const char* str,

/* Only single wildcard allowed with strict left only */
if (leftWildcardOnly) {
/* For the left wildcard only case, disallow wildcards with
* the pattern *domain.com and only allow *.domain.com. */
if (patternLen > 0 && *pattern != '.')
return 0;

wildcardEligible = 0;
}

Expand Down
Loading