File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -7096,7 +7096,6 @@ static zend_jit_trace_stop zend_jit_compile_root_trace(zend_jit_trace_rec *trace
7096
7096
if (!shared_exit_info ) {
7097
7097
if (t -> stack_map ) {
7098
7098
efree (t -> stack_map );
7099
- t -> stack_map = NULL ;
7100
7099
}
7101
7100
ret = ZEND_JIT_TRACE_STOP_NO_SHM ;
7102
7101
goto exit ;
@@ -7130,13 +7129,11 @@ static zend_jit_trace_stop zend_jit_compile_root_trace(zend_jit_trace_rec *trace
7130
7129
ZEND_JIT_EXIT_COUNTERS + t -> exit_count >= JIT_G (max_exit_counters )) {
7131
7130
if (t -> stack_map ) {
7132
7131
efree (t -> stack_map );
7133
- t -> stack_map = NULL ;
7134
7132
}
7135
7133
ret = ZEND_JIT_TRACE_STOP_TOO_MANY_EXITS ;
7136
7134
} else {
7137
7135
if (t -> stack_map ) {
7138
7136
efree (t -> stack_map );
7139
- t -> stack_map = NULL ;
7140
7137
}
7141
7138
ret = ZEND_JIT_TRACE_STOP_COMPILER_ERROR ;
7142
7139
}
@@ -7828,7 +7825,6 @@ static zend_jit_trace_stop zend_jit_compile_side_trace(zend_jit_trace_rec *trace
7828
7825
if (!shared_exit_info ) {
7829
7826
if (t -> stack_map ) {
7830
7827
efree (t -> stack_map );
7831
- t -> stack_map = NULL ;
7832
7828
}
7833
7829
ret = ZEND_JIT_TRACE_STOP_NO_SHM ;
7834
7830
goto exit ;
@@ -7869,13 +7865,11 @@ static zend_jit_trace_stop zend_jit_compile_side_trace(zend_jit_trace_rec *trace
7869
7865
ZEND_JIT_EXIT_COUNTERS + t -> exit_count >= JIT_G (max_exit_counters )) {
7870
7866
if (t -> stack_map ) {
7871
7867
efree (t -> stack_map );
7872
- t -> stack_map = NULL ;
7873
7868
}
7874
7869
ret = ZEND_JIT_TRACE_STOP_TOO_MANY_EXITS ;
7875
7870
} else {
7876
7871
if (t -> stack_map ) {
7877
7872
efree (t -> stack_map );
7878
- t -> stack_map = NULL ;
7879
7873
}
7880
7874
ret = ZEND_JIT_TRACE_STOP_COMPILER_ERROR ;
7881
7875
}
You can’t perform that action at this time.
0 commit comments