Skip to content

Commit

Permalink
Fixed false pasitive ASAN NULL pointer dereference warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dstogov committed Nov 17, 2020
1 parent f4a600b commit 1523733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/opcache/jit/zend_jit.c
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ static void *dasm_link_and_encode(dasm_State **dasm_state,
name,
(op_array && op_array->filename) ? ZSTR_VAL(op_array->filename) : NULL,
op_array,
&ssa->cfg,
ssa ? &ssa->cfg : NULL,
entry,
size);
}
Expand Down

0 comments on commit 1523733

Please sign in to comment.