Commit 9ca31379 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

parse_proxy: remove dead assignment

Spotted by clang-analyzer
parent 20ff8a09
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
      }