tor

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

commit 3552cd69bdeefb5d4fbbc905b24120573cc26f81
parent 2e7f80d5f4e8b56f060516f71f13590593b1d876
Author: Nick Mathewson <nickm@torproject.org>
Date:   Wed, 13 Mar 2019 15:56:58 -0400

coverage: Exclude lines in pubsub_pub that can only be reached on bug

Diffstat:
Msrc/lib/pubsub/pubsub_publish.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/lib/pubsub/pubsub_publish.c b/src/lib/pubsub/pubsub_publish.c @@ -49,8 +49,10 @@ pubsub_pub_(const pub_binding_t *pub, msg_aux_data_t auxdata) if (BUG(pub->msg_template.msg >= d->n_msgs) || BUG(pub->msg_template.channel >= d->n_queues)) { /* The message ID or channel ID was out of bounds. */ + // LCOV_EXCL_START d->typefns[pub->msg_template.type].free_fn(auxdata); return -1; + // LCOV_EXCL_STOP } if (! d->table[pub->msg_template.msg]) {