mirror of
https://github.com/curl/curl.git
synced 2026-04-28 23:42:21 +03:00
parse_proxy: remove dead assignment
Spotted by clang-analyzer
This commit is contained in:
parent
20ff8a0988
commit
9ca3137987
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue