parse_proxy: remove dead assignment

Spotted by clang-analyzer
This commit is contained in:
Daniel Stenberg 2012-07-13 14:28:12 +02:00
Родитель 20ff8a0988
Коммит 9ca3137987
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -4273,7 +4273,7 @@ static CURLcode parse_proxy(struct SessionHandle *data,
atsign++; /* the right side of the @-letter */
if(atsign)
proxy = proxyptr = atsign; /* now use this instead */
proxyptr = atsign; /* now use this instead */
else
res = CURLE_OUT_OF_MEMORY;
}