Skip to content

Commit 5a276bf

Browse files
committed
Merge branch 'PHP-8.1' into PHP-8.2
* PHP-8.1: Fix GH-12364: JIT leak in Symfony TranslationDebugCommandTest (#12394)
2 parents 176b79f + 36b2c5d commit 5a276bf

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
@@ -14428,8 +14428,6 @@ static int zend_jit_fe_fetch(dasm_State **Dst, const zend_op *opline, uint32_t o
1442814428
if (exit_addr) {
1442914429
if (exit_opcode == ZEND_JMP) {
1443014430
| b &exit_addr
14431-
} else {
14432-
| b >3
1443314431
}
1443414432
} else {
1443514433
| b =>target_label

ext/opcache/jit/zend_jit_x86.dasc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15396,8 +15396,6 @@ static int zend_jit_fe_fetch(dasm_State **Dst, const zend_op *opline, uint32_t o
1539615396
if (exit_addr) {
1539715397
if (exit_opcode == ZEND_JMP) {
1539815398
| jmp &exit_addr
15399-
} else {
15400-
| jmp >3
1540115399
}
1540215400
} else {
1540315401
| jmp =>target_label

0 commit comments

Comments
 (0)