Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions xdebug.c
Original file line number Diff line number Diff line change
Expand Up @@ -736,14 +736,6 @@ ZEND_DLEXPORT void xdebug_zend_shutdown(zend_extension *extension)
xdebug_library_zend_shutdown();
}

ZEND_DLEXPORT void xdebug_init_oparray(zend_op_array *op_array)
{
if (XDEBUG_MODE_IS_OFF()) {
return;
}

}

#ifndef ZEND_EXT_API
#define ZEND_EXT_API ZEND_DLEXPORT
#endif
Expand All @@ -765,7 +757,7 @@ ZEND_DLEXPORT zend_extension zend_extension_entry = {
xdebug_statement_call, /* statement_handler_func_t */
NULL, /* fcall_begin_handler_func_t */
NULL, /* fcall_end_handler_func_t */
xdebug_init_oparray, /* op_array_ctor_func_t */
NULL, /* op_array_ctor_func_t */
NULL, /* op_array_dtor_func_t */
STANDARD_ZEND_EXTENSION_PROPERTIES
};
Expand Down
Loading