diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-07-13 14:28:12 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-07-13 14:28:12 +0200 |
commit | 9ca313798760494df4136f99cf7cd935e43e9ab2 (patch) | |
tree | 776fb5b02bacd2a6d493fe047e234881e47f49b7 /lib | |
parent | 20ff8a0988d844910ff3621f75f99907aebeef4b (diff) |
parse_proxy: remove dead assignment
Spotted by clang-analyzer
Diffstat (limited to 'lib')
-rw-r--r-- | lib/url.c | 2 |
1 files changed, 1 insertions, 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; } |