mirror of
https://github.com/php/php-src.git
synced 2024-11-23 01:44:06 +08:00
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix #78212: Segfault in built-in webserver
This commit is contained in:
commit
17997a908d
2
NEWS
2
NEWS
@ -2,6 +2,8 @@ PHP NEWS
|
||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||
?? ??? ????, PHP 7.4.0beta1
|
||||
|
||||
- Core:
|
||||
. Fixed bug #78212 (Segfault in built-in webserver). (cmb)
|
||||
|
||||
11 Jul 2019, PHP 7.4.0alpha3
|
||||
|
||||
|
@ -95,6 +95,10 @@ void vsyslog(int priority, const char *message, va_list args)
|
||||
DWORD evid;
|
||||
wchar_t *strsw[2];
|
||||
|
||||
/* default event source */
|
||||
if (INVALID_HANDLE_VALUE == PW32G(log_source))
|
||||
openlog("php", LOG_PID, LOG_SYSLOG);
|
||||
|
||||
switch (priority) { /* translate UNIX type into NT type */
|
||||
case LOG_ALERT:
|
||||
etype = EVENTLOG_ERROR_TYPE;
|
||||
|
Loading…
Reference in New Issue
Block a user