File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ PHP NEWS
41
41
- FPM:
42
42
. Fixed bug GH-13437 (FPM: ERROR: scoreboard: failed to lock (already
43
43
locked)). (Jakub Zelenka)
44
+ . Fixed bug GH-17112 (Macro redefinitions). (cmb, nielsdos)
44
45
45
46
- GD:
46
47
. Fixed bug GH-16255 (Unexpected nan value in ext/gd/libgd/gd_filter.c).
@@ -53,6 +54,9 @@ PHP NEWS
53
54
- Iconv:
54
55
. Fixed bug GH-17047 (UAF on iconv filter failure). (nielsdos)
55
56
57
+ - MBString:
58
+ . Fixed bug GH-17112 (Macro redefinitions). (nielsdos, cmb)
59
+
56
60
- Opcache:
57
61
. opcache_get_configuration() properly reports jit_prof_threshold. (cmb)
58
62
. Fixed bug GH-17140 (Assertion failure in JIT trace exit with
Original file line number Diff line number Diff line change 2
2
3
3
#include <php_config.h>
4
4
5
+ #ifdef HAVE_ARPA_INET_H
6
+ # include <arpa/inet.h>
7
+ #endif
8
+ #ifdef HAVE_NETINET_IN_H
9
+ # include <netinet/in.h>
10
+ #endif
11
+ #ifdef HAVE_SYS_TIME_H
12
+ # include <sys/time.h>
13
+ #endif
14
+
5
15
/* Solaris does not have it */
6
16
#ifndef INADDR_NONE
7
17
# define INADDR_NONE (-1)
You can’t perform that action at this time.
0 commit comments