Commit 3b9103e4 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

operate: fix clang-analyzer warnings for never read variables

Two separate "Value stored to 'XXX' is never read" warnings
parent 77c66e02
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -1654,11 +1654,8 @@ int operate(struct Configurable *config, int argc, argv_item_t argv[])
        Curl_safefree(outfile);
        Curl_safefree(this_url);

        if(infdopen) {
        if(infdopen)
          close(infd);
          infdopen = FALSE;
          infd = STDIN_FILENO;
        }

        if(metalink) {
          /* Should exit if error is fatal. */