From 293e62c99d9ebd20599b2f4224c644a2aad9982e Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Fri, 30 Jul 2004 14:39:18 +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 eeb6849c86..9710ea4d60 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.50.1