From: Wez Furlong Date: Fri, 30 Jul 2004 14:39:18 +0000 (+0000) Subject: MFH: win32 zts fix X-Git-Tag: php-5.0.1RC1~48 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=293e62c99d9ebd20599b2f4224c644a2aad9982e;p=php MFH: win32 zts fix --- 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; }