"version=" are 8 chars, why do you compare only the first 7?
I was following the cases directly above it: else if (strncmpiW(ptr, szSecure, 6) == 0) { ... } else if (strncmpiW(ptr, szHttpOnly, 8) == 0)
szPath and szDomain use 5 and 7, respectively, so they're not all consistent
should I change them all to be the same? same or different patch?
thanks daniel