mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Fix a coupole of coverity complaints.
This commit is contained in:
parent
4c55e8a58f
commit
75a7997148
@ -355,10 +355,8 @@ test_pick_circid(void *arg)
|
||||
}
|
||||
|
||||
done:
|
||||
if (chan1)
|
||||
circuitmux_free(chan1->cmux);
|
||||
if (chan2)
|
||||
circuitmux_free(chan2->cmux);
|
||||
circuitmux_free(chan1->cmux);
|
||||
circuitmux_free(chan2->cmux);
|
||||
tor_free(chan1);
|
||||
tor_free(chan2);
|
||||
bitarray_free(ba);
|
||||
|
@ -113,11 +113,11 @@ test_relay_append_cell_to_circuit_queue(void *arg)
|
||||
|
||||
done:
|
||||
tor_free(cell);
|
||||
cell_queue_clear(&orcirc->base_.n_chan_cells);
|
||||
cell_queue_clear(&orcirc->p_chan_cells);
|
||||
if (orcirc) {
|
||||
circuitmux_detach_circuit(nchan->cmux, TO_CIRCUIT(orcirc));
|
||||
circuitmux_detach_circuit(pchan->cmux, TO_CIRCUIT(orcirc));
|
||||
cell_queue_clear(&orcirc->base_.n_chan_cells);
|
||||
cell_queue_clear(&orcirc->p_chan_cells);
|
||||
}
|
||||
tor_free(orcirc);
|
||||
free_fake_channel(nchan);
|
||||
|
Loading…
Reference in New Issue
Block a user