[tor-commits] [tor] 04/04: CID 1524707: Quiet coverity noise

gitolite role git at cupani.torproject.org
Thu May 4 20:05:16 UTC 2023


This is an automated email from the git hooks/post-receive script.

dgoulet pushed a commit to branch main
in repository tor.

commit 9ee71eaf5ad83efec8366ecf17da5ba57ab47cde
Author: Mike Perry <mikeperry-git at torproject.org>
AuthorDate: Thu Apr 20 21:43:59 2023 +0000

    CID 1524707: Quiet coverity noise
---
 src/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
index 9d81a4ba3b..fa0bb1c23e 100644
--- 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);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the tor-commits mailing list