Commit f3ed5ec0 authored by Nick Mathewson's avatar Nick Mathewson 🤹
Browse files

Fix a pair of dead assignments

parent a807bb78
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -2551,8 +2551,6 @@ crypto_strongest_rand(uint8_t *out, size_t out_len)
    } else {
      SHA512(inp, sizeof(inp), tmp);
      memcpy(out, tmp, out_len);
      out += DLEN;
      out_len -= DLEN;
      break;
    }
  }