Commit 43ee201
committed
fix(runtime): remove duplicate block.d assignment in destroy_block cleanup
The nulling chain in destroy_block set block.d to null twice:
block.fn = block.s = block.d = block.p = block.d = block.co = block.t = null
The second block.d = null is a duplicate. Removing it so each property
in the chain is unique, preventing potential confusion about which
property the second slot was intended to clear.1 parent 61271cb commit 43ee201
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
440 | 440 | | |
441 | 441 | | |
442 | 442 | | |
443 | | - | |
| 443 | + | |
444 | 444 | | |
0 commit comments