tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 9ee71eaf5ad83efec8366ecf17da5ba57ab47cde
parent bdf4fef2db193d6704d79289ea3fbba0061918fc
Author: Mike Perry <mikeperry-git@torproject.org>
Date:   Thu, 20 Apr 2023 21:43:59 +0000

CID 1524707: Quiet coverity noise

Diffstat:
Msrc/core/or/conflux_cell.c | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/core/or/conflux_cell.c b/src/core/or/conflux_cell.c @@ -53,8 +53,11 @@ build_link_cell(const conflux_cell_link_t *link, uint8_t *cell_out) trn_cell_conflux_link_payload_v1_set_desired_ux(payload, link->desired_ux); /* Encode payload. */ - trn_cell_conflux_link_setlen_payload(cell, - trn_cell_conflux_link_payload_v1_encoded_len(payload)); + ssize_t pay_len = trn_cell_conflux_link_payload_v1_encoded_len(payload); + tor_assert(pay_len >= 0); + + trn_cell_conflux_link_setlen_payload(cell, pay_len); + trn_cell_conflux_link_payload_v1_encode( trn_cell_conflux_link_getarray_payload(cell), trn_cell_conflux_link_getlen_payload(cell), payload);