mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Re-do a cast in order to make old buggy freebsd gcc happy
Fix for #9254. Bugfix on 0.2.4.14-alpha. This is not actually a bug in the Tor code.
This commit is contained in:
parent
7a4145c45a
commit
c36bdbd535
4
changes/bug9254
Normal file
4
changes/bug9254
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Minor bugfixes:
|
||||||
|
- Fix a spurious compilation warning with some older versions of
|
||||||
|
GCC on FreeBSD. Fixes bug 9254; bugfix on 0.2.4.14-alpha.
|
||||||
|
|
@ -1518,8 +1518,10 @@ static size_t
|
|||||||
n_cells_in_circ_queues(const circuit_t *c)
|
n_cells_in_circ_queues(const circuit_t *c)
|
||||||
{
|
{
|
||||||
size_t n = c->n_chan_cells.n;
|
size_t n = c->n_chan_cells.n;
|
||||||
if (! CIRCUIT_IS_ORIGIN(c))
|
if (! CIRCUIT_IS_ORIGIN(c)) {
|
||||||
n += TO_OR_CIRCUIT((circuit_t*)c)->p_chan_cells.n;
|
circuit_t *cc = (circuit_t *) c;
|
||||||
|
n += TO_OR_CIRCUIT(cc)->p_chan_cells.n;
|
||||||
|
}
|
||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user