From 043fdb5fb15af653f735e003db0a9ebd9be1cf8f Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Fri, 30 Jul 2004 14:38:29 +0000 Subject: [PATCH] MFH: win32 zts fix --- ext/standard/syslog.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ext/standard/syslog.c b/ext/standard/syslog.c index 39d57d6686..ecab0e2ed0 100644 --- a/ext/standard/syslog.c +++ b/ext/standard/syslog.c @@ -119,6 +119,9 @@ PHP_RSHUTDOWN_FUNCTION(syslog) if (BG(syslog_device)) { efree(BG(syslog_device)); } +#ifdef PHP_WIN32 + closelog(); +#endif return SUCCESS; } -- 2.40.0