File tree Expand file tree Collapse file tree 1 file changed +2
-22
lines changed Expand file tree Collapse file tree 1 file changed +2
-22
lines changed Original file line number Diff line number Diff line change @@ -1848,26 +1848,6 @@ PHP_MINIT_FUNCTION(mongodb)
1848
1848
}
1849
1849
/* }}} */
1850
1850
1851
- /* {{{ PHP_RINIT_FUNCTION */
1852
- PHP_RINIT_FUNCTION (mongodb )
1853
- {
1854
- (void )type ; /* We don't care if we are loaded via dl() or extension= */
1855
- (void )module_number ; /* Really doesn't matter which module number we are */
1856
-
1857
- return SUCCESS ;
1858
- }
1859
- /* }}} */
1860
-
1861
- /* {{{ PHP_RSHUTDOWN_FUNCTION */
1862
- PHP_RSHUTDOWN_FUNCTION (mongodb )
1863
- {
1864
- (void )type ; /* We don't care if we are loaded via dl() or extension= */
1865
- (void )module_number ; /* Really doesn't matter which module number we are */
1866
-
1867
- return SUCCESS ;
1868
- }
1869
- /* }}} */
1870
-
1871
1851
/* {{{ PHP_MSHUTDOWN_FUNCTION */
1872
1852
PHP_MSHUTDOWN_FUNCTION (mongodb )
1873
1853
{
@@ -1942,8 +1922,8 @@ zend_module_entry mongodb_module_entry = {
1942
1922
mongodb_functions ,
1943
1923
PHP_MINIT (mongodb ),
1944
1924
PHP_MSHUTDOWN (mongodb ),
1945
- PHP_RINIT (mongodb ),
1946
- PHP_RSHUTDOWN (mongodb ),
1925
+ NULL /* PHP_RINIT(mongodb)*/ ,
1926
+ NULL /* PHP_RSHUTDOWN(mongodb)*/ ,
1947
1927
PHP_MINFO (mongodb ),
1948
1928
MONGODB_VERSION ,
1949
1929
PHP_MODULE_GLOBALS (mongodb ),
You can’t perform that action at this time.
0 commit comments