Set is_padding_timer_scheduled to 0

When calling `circpad_send_padding_cell_for_callback()`, the flag
`is_padding_timer_scheduled` was not resetted to 0 which caused an issue
in the circpad simulator.
This commit fixes this problem.

Fixes #32671.
This commit is contained in:
Guinness 2020-10-20 21:04:33 +02:00
parent 66cd12e044
commit 0668437b58
No known key found for this signature in database
GPG Key ID: 452A734DA611FA7C
2 changed files with 5 additions and 0 deletions

4
changes/bug32671 Normal file
View File

@ -0,0 +1,4 @@
o Minor bugfixes (circuit padding):
- When circpad_send_padding_cell_for_callback is called,
`is_padding_timer_scheduled` flag was not reset. Now it is set to 0 at
the top of that function. Fix bug #32671.

View File

@ -1226,6 +1226,7 @@ circpad_send_padding_cell_for_callback(circpad_machine_runtime_t *mi)
circuit_t *circ = mi->on_circ;
int machine_idx = mi->machine_index;
mi->padding_scheduled_at_usec = 0;
mi->is_padding_timer_scheduled = 0;
circpad_statenum_t state = mi->current_state;
/* Make sure circuit didn't close on us */