We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71cae13 commit 39ca606Copy full SHA for 39ca606
src/routine.c
@@ -46,7 +46,7 @@ static inline zend_result pmmpthread_routine_run_function(pmmpthread_zend_object
46
//fake stack frame to make sure zend_call_function() doesn't swallow exceptions
47
//we need to be able to pass them to the user exception handler if there is one
48
memset(&execute_data, 0, sizeof(execute_data));
49
- execute_data.func = &zend_pass_function;
+ execute_data.func = (zend_function*) & zend_pass_function;
50
51
if (pmmpthread_monitor_check(&connection->ts_obj->monitor, PMMPTHREAD_MONITOR_ERROR)) {
52
return result;
0 commit comments