Commit 8fc6b58d authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

winhttp: Remove redundant comparison.

parent 9a53298e
......@@ -152,7 +152,7 @@ static cookie_t *parse_cookie( const WCHAR *string )
if (*p++ == '=')
{
while (*p && *p == ' ') p++;
while (*p == ' ') p++;
len = strlenW( p );
while (len && p[len - 1] == ' ') len--;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment