Skip to content

Commit

Permalink
Merge pull request #363 from batuzovk/correct-cookie
Browse files Browse the repository at this point in the history
Empty browser-side cookie should not be equal to any cookie.
  • Loading branch information
blackav authored Oct 11, 2024
2 parents 4dfbec6 + 65ce2f7 commit 1cbca4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/uldb_plugin_xml.c
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ get_cookie_func(
}
}

if (c && client_key && c->client_key != client_key) {
if (c && c->client_key != client_key) {
c = NULL;
}

Expand Down

0 comments on commit 1cbca4b

Please sign in to comment.