We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9781085 commit c99a026Copy full SHA for c99a026
NEWS
@@ -2,6 +2,9 @@ PHP NEWS
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
?? ??? 2022, PHP 8.0.16
4
5
+- FPM:
6
+ . Fixed memory leak on invalid port. (David Carlier)
7
+
8
- Sockets:
9
. Fixed ext/sockets build on Haiku. (David Carlier)
10
sapi/fpm/fpm/fpm_sockets.c
@@ -336,6 +336,7 @@ static int fpm_socket_af_inet_listening_socket(struct fpm_worker_pool_s *wp) /*
336
337
if (port == 0) {
338
zlog(ZLOG_ERROR, "invalid port value '%s'", port_str);
339
+ free(dup_address);
340
return -1;
341
}
342
0 commit comments