winhttp: Remove redundant comparison.

Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Andrey Gusev 2017-10-05 11:00:46 +03:00 committed by Alexandre Julliard
parent 9a53298eed
commit 8fc6b58df4
1 changed files with 1 additions and 1 deletions

View File

@ -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--;