Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch for php-7.0.3 #1469

Open
wants to merge 46 commits into
base: origin-php-7.0.3-1733766575
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
9a230d1
commit patch 23929247
Dec 9, 2024
6529d2f
commit patch 19682876
Dec 9, 2024
f5e82c8
commit patch 25641969
Dec 9, 2024
6ec1c3c
commit patch 20549064
Dec 9, 2024
889fd1f
commit patch 21331140
Dec 9, 2024
54997b5
commit patch 18163624
Dec 9, 2024
2df6f63
commit patch 20696714
Dec 9, 2024
648a99d
commit patch 22726075
Dec 9, 2024
4e31147
commit patch 27164290
Dec 9, 2024
5d3a1fa
commit patch 22282966
Dec 9, 2024
58fa088
commit patch 27058791
Dec 9, 2024
7664e85
commit patch 23084267
Dec 9, 2024
ce92519
commit patch 27904771
Dec 9, 2024
871c737
commit patch 20908229
Dec 9, 2024
3a6c64a
commit patch 21902474
Dec 9, 2024
592faff
commit patch 25874775
Dec 9, 2024
28f7198
commit patch 22451750
Dec 9, 2024
3b913be
commit patch 24203908
Dec 9, 2024
14af3d7
commit patch 22451749
Dec 9, 2024
a515244
commit patch 21627568
Dec 9, 2024
399c6e0
commit patch 24690887
Dec 9, 2024
6f1c5ea
commit patch 23992499
Dec 9, 2024
dc63d3a
commit patch 25599574
Dec 9, 2024
4b70411
commit patch 24648545
Dec 9, 2024
a7f2f76
commit patch 19388180
Dec 9, 2024
b1751a5
commit patch 17718984
Dec 9, 2024
2b3b8c3
commit patch 19029024
Dec 9, 2024
5a3f9c0
commit patch 19197630
Dec 9, 2024
1824eb9
commit patch 18501240
Dec 9, 2024
145d58b
commit patch 17718982
Dec 9, 2024
22e8e32
commit patch 27545639
Dec 9, 2024
bf2b0a8
commit patch 18374849
Dec 9, 2024
57cbaa8
commit patch 20865952
Dec 9, 2024
890bdba
commit patch 23528047
Dec 9, 2024
5cf706c
commit patch 17445414
Dec 9, 2024
891221b
commit patch 20020642
Dec 9, 2024
69ca064
commit patch 27481995
Dec 9, 2024
642b597
commit patch 19092204
Dec 9, 2024
56a25c0
commit patch 22916028
Dec 9, 2024
a65cf0a
commit patch 18797119
Dec 9, 2024
6180d42
commit patch 18184733
Dec 9, 2024
a8cf30a
commit patch 22620635
Dec 9, 2024
9d088f0
commit patch 24034599
Dec 9, 2024
a18ff6d
commit patch 19640620
Dec 9, 2024
e902a9f
commit patch 18395868
Dec 9, 2024
e097c7c
commit patch 23528046
Dec 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ PHP NEWS
- mbstring:
. Fixed bug #71397 (mb_send_mail segmentation fault). (Andrea, Yasuo)

- Core:
. Fixed bug #73807 (Performance problem with processing large post request).
(Nikita)

- OpenSSL:
. Fixed bug #71475 (openssl_seal() uninitialized memory usage). (Stas)

Expand Down Expand Up @@ -128,6 +132,9 @@ PHP NEWS
. Implemented FR #55651 (Option to ignore the returned FTP PASV address).
(abrender at elitehosts dot com)

- Intl:
. Fixed bug #73473 (Stack Buffer Overflow in msgfmt_parse_message). (libnex)

- Mbstring:
. Fixed bug #71066 (mb_send_mail: Program terminated with signal SIGSEGV,
Segmentation fault). (Laruence)
Expand Down Expand Up @@ -656,6 +663,10 @@ PHP NEWS
. Corrected oci8 hash destructors to prevent segfaults, and a few other fixes.
(Cameron Porter)

- IMAP:
. Fixed bug #77153 (imap_open allows to run arbitrary shell commands via
mailbox parameter). (Stas)

- ODBC:
. Fixed bug #69975 (PHP segfaults when accessing nvarchar(max) defined
columns). (cmb)
Expand Down
965 changes: 965 additions & 0 deletions NEWS.orig

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions UPGRADING
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
13. Other Changes


- IMAP:
Starting with 7.2.13, rsh/ssh logins are disabled by default. Use
imap.enable_insecure_rsh if you want to enable them. Note that the IMAP
library does not filter mailbox names before passing them to rsh/ssh
command, thus passing untrusted data to this function with rsh/ssh enabled
is insecure.

========================================
1. Backward Incompatible Changes
========================================
Expand Down
Loading