Skip to content

Commit b4be6c7

Browse files
committed
fix bug in ZEND_INIT_MODULE_GLOBALS usage
1 parent f84f6d0 commit b4be6c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/appserver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ PHP_MINIT_FUNCTION(appserver)
187187
/* If you have INI entries, uncomment these lines
188188
REGISTER_INI_ENTRIES();
189189
*/
190-
ZEND_INIT_MODULE_GLOBALS(appserver, php_appserver_init_globals, php_appserver_shutdown_globals);
190+
ZEND_INIT_MODULE_GLOBALS(appserver, php_appserver_init_globals, NULL);
191191

192192
return SUCCESS;
193193
}

0 commit comments

Comments
 (0)