Ferenc Kovacs
c9f21e8319
update NEWs
2016-07-21 00:36:07 +02:00
Christoph M. Becker
206d45bc17
Update NEWS
2016-07-19 17:58:29 +02:00
Christoph M. Becker
3c3980caa1
Merge branch 'pull-request/1991' into PHP-5.6
2016-07-19 00:42:49 +02:00
Nikita Popov
171c759d79
Revert "Fixed bug #72286 (Segmentation fault During Garbage Collection)"
...
This reverts commit 1c84b55ade
.
2016-07-16 23:02:23 +02:00
Christoph M. Becker
3666cfab97
Fix #72604 : imagearc() ignores thickness for full arcs
...
We remove the special casing for full arcs, what conforms to external libgd.
2016-07-15 19:45:52 +02:00
Christoph M. Becker
a4aa4f9772
Fix bug #66502 : DOM document dangling reference
...
When we decrement the refcount of a node's document, we state that we
won't need it anymore. Therefore we can *always* set the pointer to the
document to NULL, what avoids invalid memory accesses for some edge cases
as demonstrated with the PHPT.
Original patch provided by Sean Heelan.
2016-07-15 01:08:08 +02:00
Dmitry Stogov
1c84b55ade
Fixed bug #72286 (Segmentation fault During Garbage Collection)
2016-07-14 22:37:25 +03:00
Christoph M. Becker
8bb3bd04a9
Fix bug #72596 : imagetypes function won't advertise WEBP support
...
We add the constant IMG_WEBP and make sure that WebP support is properly
reported by imagetypes().
2016-07-14 17:17:59 +02:00
Nikita Popov
3cc4265527
Add NEWS entry
2016-07-13 21:57:01 +02:00
Julien Pauli
1896ca4e88
Updated NEWS
2016-07-12 15:47:05 +02:00
Christoph M. Becker
76e249d31c
Partially fix #72506 : idn_to_ascii for UTS #46 incorrect for long domain names
...
We don't actually fix this issue wrt. the empty $info array, because it is
not clear what this array should contain and we're concerned about the
potential BC break, but at least we fix the inconsistent handling of
resulting domains with 255 bytes (which raise an error), and longer domains
(which just return FALSE), what has to be considered a very minor BC break
if at all.
2016-07-12 14:47:14 +02:00
Julien Pauli
17d4f5c2f8
Updated NEWS
2016-07-12 10:49:04 +02:00
Julien Pauli
403f23b460
Updated NEWS
2016-07-12 10:37:59 +02:00
Julien Pauli
d2d17e14ee
Updated NEWS
2016-07-12 10:19:45 +02:00
Xinchen Hui
7903276f4c
backport to 5.6 (we should not unset the default value)
2016-07-12 12:14:45 +08:00
Christoph M. Becker
966311e627
Bug #66836 has been fixed
2016-07-11 16:06:35 +02:00
Matteo Beccati
219ebcb689
Fixed bug #70313 PDO statement fails to throw exception
2016-07-10 14:33:56 +02:00
Julien Pauli
51d19891a4
Updated NEWS
2016-07-08 16:31:42 +02:00
Julien Pauli
1071a2655f
Updated NEWS
2016-07-08 15:04:13 +02:00
Ferenc Kovacs
2b7cd813e7
merge NEWS blocks
2016-07-07 01:46:02 +02:00
Ferenc Kovacs
c1280db28a
5.6.25 is next
2016-07-07 00:09:48 +02:00
Valentin VALCIU
4c24f170ea
Fix bug #55701 : GlobIterator throws LogicException
...
GlobIterator throws LogicException with message 'The parent constructor was
not called' on its first operation when the glob expression doesn't match
any file. It also throws on the first operation after the iteration
completes, when the glob expression matches some files.
# Resolved conflicts:
# ext/spl/spl_directory.c
2016-07-05 16:39:25 +02:00
Pedro Magalhães
08777e9615
Don't enforce LSP if prototype method is private
...
Fixes bug #72496 .
2016-07-05 14:30:22 +02:00
Ferenc Kovacs
9a9ede00bc
this was actually fixed in 5.6.23
2016-07-03 23:31:32 +02:00
Christoph M. Becker
1314db7109
Update NEWS
2016-06-27 17:07:26 +02:00
Lior Kaplan
b4873e57b4
Add CVE info for PHP 5.6.22
2016-06-25 20:31:26 +03:00
Lior Kaplan
6bd527771c
Add CVE info for PHP 5.6.23
2016-06-25 20:28:51 +03:00
Lior Kaplan
02c24be8e4
Add missing entries for PHP 5.6.23
2016-06-25 19:56:00 +03:00
Ferenc Kovacs
ba980d0a62
update NEWS
2016-06-22 03:03:01 +02:00
Remi Collet
1b4570b79f
Fix bug #71936 (Segmentation fault destroying HTTP_RAW_POST_DATA)
2016-06-20 18:43:07 +02:00
Christoph M. Becker
b3f3cd5903
Update NEWS
2016-06-20 15:18:47 +02:00
Stanislav Malyshev
58797ab895
Update NEWS
2016-06-18 22:13:04 -07:00
Xinchen Hui
c4c1993af6
Fixed bug #72439 (Stream socket with remote address leads to a segmentation fault)
2016-06-18 21:29:47 -07:00
Christoph M. Becker
ed0ec66996
Fix #53640 : XBM images require width to be multiple of 8
2016-06-17 17:50:36 +02:00
Christoph M. Becker
5f4113edb3
Update NEWS
2016-06-16 14:26:45 +02:00
Bartosz Dziewoński
1ab5a1b432
Fix #50845 : exif_process_IFD_TAG: Use the right offset if reading from stream
...
When the location of the data is outside of the range we have
preloaded (for example, if it's before the beginning of the IFD
structure), we have to read it from the stream into a separate buffer.
The offset calculations in this case were incorrect, resulting in
bogus values being read for the affected fields (sometimes parts of
other fields, sometimes binary data).
The included test image, sourced from [1], is in the public domain.
[1] https://commons.wikimedia.org/wiki/File:U.S._Marines_Prepare_to_board_an_MV-22_Osprey_160509-M-AF202-041.jpg
2016-06-14 10:48:08 -07:00
Stanislav Malyshev
4c968c6ddd
Fix bug #72138 - Integer Overflow in Length of String-typed ZVAL
2016-06-14 01:03:03 -07:00
Jakub Zelenka
0e2447cd11
Fix bug #71915 (openssl_random_pseudo_bytes is not fork-safe)
...
Add time to the entropy before using RAND_bytes
2016-06-12 18:14:21 +01:00
Jakub Zelenka
54310d95f9
Fix bug #72336 (openssl_pkey_new does not fail for invalid DSA params)
2016-06-12 18:14:21 +01:00
Ferenc Kovacs
c26097c2f1
5.6.24 will be next
2016-06-09 10:51:02 +02:00
Jakub Zelenka
05033c9ebd
Fix bug #72140 (segfault after calling ERR_free_strings())
2016-06-08 18:21:39 +01:00
Lior Kaplan
62f9d1e3ae
Add CVE to #66387
2016-06-07 21:45:24 +03:00
Anatol Belski
1d0f128351
add missing NEWS entry
2016-06-07 18:41:17 +02:00
Anatol Belski
2004c25790
update NEWS
2016-06-02 12:18:33 +02:00
Ferenc Kovacs
6e5958e37d
update NEWS
2016-05-26 03:05:06 +02:00
Derick Rethans
f43f6fc39b
Fixed bug #63740 (strtotime seems to use both sunday and monday as start of week)
2016-05-18 12:19:11 +01:00
Ferenc Kovacs
89e4862e5f
add missing NEWS entry
2016-05-11 23:29:23 +02:00
Anatol Belski
0ea2bfb30e
update NEWS
2016-05-09 18:50:40 +02:00
Xinchen Hui
1c7f608071
Fixed bug #72172 (zend_hex_strtod should not use strlen)
2016-05-06 23:52:06 -07:00
Lior Kaplan
76a5117da7
Add CVE to bug #69719 (PHP 5.6.10)
2016-04-29 13:23:41 +03:00