Fixed matching of empty version.

This commit is contained in:
Valentin Bartenev
2017-10-19 17:26:56 +03:00
parent 0833074f30
commit 39fd38a948

View File

@@ -416,6 +416,10 @@ nxt_strvers_match(u_char *version, u_char *prefix, size_t length)
{
u_char next, last;
if (length == 0) {
return 1;
}
if (nxt_strncmp(version, prefix, length) == 0) {
next = version[length];