mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Merge branch 'PHP-8.3'
This commit is contained in:
@@ -362,9 +362,6 @@ PHP_MINIT_FUNCTION(basic) /* {{{ */
|
||||
|
||||
PHP_MSHUTDOWN_FUNCTION(basic) /* {{{ */
|
||||
{
|
||||
#ifdef HAVE_SYSLOG_H
|
||||
PHP_MSHUTDOWN(syslog)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
|
||||
#endif
|
||||
#ifdef ZTS
|
||||
ts_free_id(basic_globals_id);
|
||||
#ifdef PHP_WIN32
|
||||
@@ -421,9 +418,6 @@ PHP_RINIT_FUNCTION(basic) /* {{{ */
|
||||
BG(user_shutdown_function_names) = NULL;
|
||||
|
||||
PHP_RINIT(filestat)(INIT_FUNC_ARGS_PASSTHRU);
|
||||
#ifdef HAVE_SYSLOG_H
|
||||
BASIC_RINIT_SUBMODULE(syslog)
|
||||
#endif
|
||||
BASIC_RINIT_SUBMODULE(dir)
|
||||
BASIC_RINIT_SUBMODULE(url_scanner_ex)
|
||||
|
||||
@@ -473,9 +467,7 @@ PHP_RSHUTDOWN_FUNCTION(basic) /* {{{ */
|
||||
|
||||
PHP_RSHUTDOWN(filestat)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
|
||||
#ifdef HAVE_SYSLOG_H
|
||||
#ifdef PHP_WIN32
|
||||
BASIC_RSHUTDOWN_SUBMODULE(syslog)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
|
||||
#endif
|
||||
BASIC_RSHUTDOWN_SUBMODULE(syslog);
|
||||
#endif
|
||||
BASIC_RSHUTDOWN_SUBMODULE(assert)
|
||||
BASIC_RSHUTDOWN_SUBMODULE(url_scanner_ex)
|
||||
|
||||
@@ -22,11 +22,7 @@
|
||||
#include "php_syslog.h"
|
||||
|
||||
PHP_MINIT_FUNCTION(syslog);
|
||||
PHP_RINIT_FUNCTION(syslog);
|
||||
#ifdef PHP_WIN32
|
||||
PHP_RSHUTDOWN_FUNCTION(syslog);
|
||||
#endif
|
||||
PHP_MSHUTDOWN_FUNCTION(syslog);
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -41,23 +41,9 @@ PHP_MINIT_FUNCTION(syslog)
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
PHP_RINIT_FUNCTION(syslog)
|
||||
{
|
||||
BG(syslog_device) = NULL;
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
#ifdef PHP_WIN32
|
||||
PHP_RSHUTDOWN_FUNCTION(syslog)
|
||||
{
|
||||
closelog();
|
||||
return SUCCESS;
|
||||
}
|
||||
#endif
|
||||
|
||||
PHP_MSHUTDOWN_FUNCTION(syslog)
|
||||
{
|
||||
php_closelog();
|
||||
if (BG(syslog_device)) {
|
||||
free(BG(syslog_device));
|
||||
BG(syslog_device) = NULL;
|
||||
|
||||
Reference in New Issue
Block a user