mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 21:14:10 +01:00
Fix use after free in transaction code
If we set an instruction as ready twice, it decreases the transaction's num_waiting a second time and applies the transaction earlier than it should. This no doubt has undesired effects, probably resulting in a use after free. Hopefully fixes the first part of #2207.
This commit is contained in:
parent
f414885b1d
commit
50b401677b
@ -377,7 +377,9 @@ static void set_instructions_ready(struct sway_view *view, int index) {
|
|||||||
for (int i = 0; i <= index; ++i) {
|
for (int i = 0; i <= index; ++i) {
|
||||||
struct sway_transaction_instruction *instruction =
|
struct sway_transaction_instruction *instruction =
|
||||||
view->swayc->instructions->items[i];
|
view->swayc->instructions->items[i];
|
||||||
set_instruction_ready(instruction);
|
if (!instruction->ready) {
|
||||||
|
set_instruction_ready(instruction);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user