Skip to content

Commit 36b2c5d

Browse files
committed
Fix GH-12364: JIT leak in Symfony TranslationDebugCommandTest (#12394)
1 parent 44a7016 commit 36b2c5d

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

ext/opcache/jit/zend_jit_arm64.dasc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14557,8 +14557,6 @@ static int zend_jit_fe_fetch(dasm_State **Dst, const zend_op *opline, uint32_t o
1455714557
if (exit_addr) {
1455814558
if (exit_opcode == ZEND_JMP) {
1455914559
| b &exit_addr
14560-
} else {
14561-
| b >3
1456214560
}
1456314561
} else {
1456414562
| b =>target_label

ext/opcache/jit/zend_jit_x86.dasc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15506,8 +15506,6 @@ static int zend_jit_fe_fetch(dasm_State **Dst, const zend_op *opline, uint32_t o
1550615506
if (exit_addr) {
1550715507
if (exit_opcode == ZEND_JMP) {
1550815508
| jmp &exit_addr
15509-
} else {
15510-
| jmp >3
1551115509
}
1551215510
} else {
1551315511
| jmp =>target_label

0 commit comments

Comments
 (0)