Skip to content

Commit 7f6c051

Browse files
bwoebicmb69
authored andcommitted
[skip ci] Fix phpize for Windows 11 (24H2)
It seems like n === undefined must have worked on older versions of jscript, but currently it just causes the insertion to silently fail. This sets n to an empty string, allowing phpize to include the local config.w32 files.
1 parent 726cf51 commit 7f6c051

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

NEWS

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3+
?? ??? ????, PHP 8.1.32
4+
5+
- Windows:
6+
. Fixed phpize for Windows 11 (24H2). (bwoebi)
7+
38
21 Nov 2024, PHP 8.1.31
49

510
- CLI:
@@ -28,8 +33,6 @@ PHP NEWS
2833
. Fixed bug GHSA-r977-prxv-hc43 (Single byte overread with
2934
convert.quoted-printable-decode filter). (CVE-2024-11233) (nielsdos)
3035

31-
32-
3336
26 Sep 2024, PHP 8.1.30
3437

3538
- CGI:

win32/build/phpize.js.in

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ function find_config_w32(dirname)
9191

9292
deps = get_module_dep(contents);
9393

94+
n = "";
9495
item = new Module_Item(n, c, dir_line, deps, contents);
9596
MODULES.Add(n, item);
9697
}

0 commit comments

Comments
 (0)