File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ PHP NEWS
12
12
calls destructor). (Girgias)
13
13
. Fixed bug GH-14510 (memleak due to missing pthread_attr_destroy()-call).
14
14
(Florian Engelhardt)
15
+ . Fixed bug GH-14549 (Incompatible function pointer type for fclose).
16
+ (Ryan Carsten Schmidt)
15
17
16
18
- BCMatch:
17
19
. Fixed bug (bcpowmod() with mod = -1 returns 1 when it must be 0). (Girgias)
@@ -70,7 +72,7 @@ PHP NEWS
70
72
. Fixed buffer limit on Windows, replacing read call usage by _read.
71
73
(David Carlier)
72
74
. Fixed bug GHSA-3qgc-jrrr-25jv (Bypass of CVE-2012-1823, Argument Injection
73
- in PHP-CGI). (CVE-2024-4577) (nielsdos)
75
+ in PHP-CGI). (CVE-2024-4577) (nielsdos)
74
76
75
77
- CLI:
76
78
. Fixed bug GH-14189 (PHP Interactive shell input state incorrectly handles
@@ -125,7 +127,7 @@ PHP NEWS
125
127
126
128
- Standard:
127
129
. Fixed bug GHSA-9fcc-425m-g385 (Bypass of CVE-2024-1874).
128
- (CVE-2024-5585) (nielsdos)
130
+ (CVE-2024-5585) (nielsdos)
129
131
130
132
- XML:
131
133
. Fixed bug GH-14124 (Segmentation fault with XML extension under certain
Original file line number Diff line number Diff line change @@ -1303,7 +1303,7 @@ dnl See if we have broken header files like SunOS has.
1303
1303
dnl
1304
1304
AC_DEFUN ( [ PHP_MISSING_FCLOSE_DECL] ,[
1305
1305
AC_MSG_CHECKING ( [ for fclose declaration] )
1306
- AC_COMPILE_IFELSE ( [ AC_LANG_PROGRAM ( [ [ #include <stdio.h>] ] , [ [ int (*func)(void ) = fclose] ] ) ] ,[
1306
+ AC_COMPILE_IFELSE ( [ AC_LANG_PROGRAM ( [ [ #include <stdio.h>] ] , [ [ int (*func)(FILE * ) = fclose] ] ) ] ,[
1307
1307
AC_DEFINE ( MISSING_FCLOSE_DECL ,0 ,[ ] )
1308
1308
AC_MSG_RESULT ( [ ok] )
1309
1309
] ,[
You can’t perform that action at this time.
0 commit comments