[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[tor-commits] [tor] 04/04: CID 1524707: Quiet coverity noise
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@xxxxxxxxxxxxxx>
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.
_______________________________________________
tor-commits mailing list
tor-commits@xxxxxxxxxxxxxxxxxxxx
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits