MINOR: quic: Useless statement in quic_crypto_data_cpy()

This should fix Coverity CID 375057 in GH #1526 where a useless assignment
was detected.
This commit is contained in:
Frédéric Lécaille 2022-02-02 15:57:22 +01:00 committed by Amaury Denoyelle
parent c0b481f87b
commit 547aa0e95e

View File

@ -972,7 +972,6 @@ static int quic_crypto_data_cpy(struct quic_enc_level *qel,
/* Increment the total size of this CRYPTO buffers by <to_copy>. */
qel->tx.crypto.sz += to_copy;
(*qcb)->sz += to_copy;
pos += to_copy;
len -= to_copy;
data += to_copy;
}