Merge pull request #2208 from RyanDwyer/instruction-use-after-free
Fix use after free in transaction code
This commit is contained in:
commit
7efeacf16c
|
@ -377,7 +377,9 @@ static void set_instructions_ready(struct sway_view *view, int index) {
|
|||
for (int i = 0; i <= index; ++i) {
|
||||
struct sway_transaction_instruction *instruction =
|
||||
view->swayc->instructions->items[i];
|
||||
set_instruction_ready(instruction);
|
||||
if (!instruction->ready) {
|
||||
set_instruction_ready(instruction);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue