History log of /php-src/NEWS (Results 6026 – 6050 of 15458)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# d65adac2 21-Aug-2016 Christoph M. Becker

Fix #72913: imagecopy() loses single-color transparency on palette images

The proper code to handle true-color to palette copies is already contained
in gdImageCopy(), so we can simply r

Fix #72913: imagecopy() loses single-color transparency on palette images

The proper code to handle true-color to palette copies is already contained
in gdImageCopy(), so we can simply remove the buggy duplicated code.

show more ...

# 15f1b041 21-Aug-2016 Christoph M. Becker

Merge branch 'PHP-7.0' into PHP-7.1


# 7a36056d 21-Aug-2016 Christoph M. Becker

Merge branch 'PHP-5.6' into PHP-7.0


# 9eb5bbd8 21-Aug-2016 Christoph M. Becker

Fix #66005: imagecopy does not support 1bit transparency on truecolor images

We must not copy transparent pixels, see
<https://github.com/libgd/libgd/commit/daac285c>.

# 0476bb1d 21-Aug-2016 Xinchen Hui

Fixed bug #72911 (Memleak in zend_binary_assign_op_obj_helper)

# b740bb39 21-Aug-2016 Xinchen Hui

Fixed bug #72907 (null pointer deref, segfault in gc_remove_zval_from_buffer (zend_gc.c:260))

# 83bdcf07 21-Aug-2016 Aaron Piotrowski

Merge branch 'PHP-7.1'

# Conflicts:
# NEWS
# UPGRADING


# 8855a2ce 20-Aug-2016 Aaron Piotrowski

Do not prepend ? on nullables in ReflectionType::__toString()

Better BC with 7.0.

# 29849e5b 20-Aug-2016 Christoph M. Becker

Merge branch 'PHP-7.0' into PHP-7.1


# 078f6742 20-Aug-2016 Christoph M. Becker

Merge branch 'PHP-5.6' into PHP-7.0


# e4a006cd 19-Aug-2016 Christoph M. Becker

Fix #65732: grapheme_*() is not Unicode compliant on CR LF sequence

According to the Unicode specification (at least as of 5.1), CRLF sequences
are considered to be a single grapheme. We

Fix #65732: grapheme_*() is not Unicode compliant on CR LF sequence

According to the Unicode specification (at least as of 5.1), CRLF sequences
are considered to be a single grapheme. We cater to that special case by
letting grapheme_ascii_check() fail. While it would be trivial to fix
grapheme_ascii_check() wrt. grapheme_strlen(), grapheme_substr() and
grapheme_strrpos() would be much harder to handle, so we accept the slight
performance penalty if CRLF is involved.

show more ...

# 76c796fb 20-Aug-2016 Christoph M. Becker

Merge branch 'PHP-7.0' into PHP-7.1


# db1ef5cb 20-Aug-2016 Christoph M. Becker

Merge branch 'PHP-5.6' into PHP-7.0


# 9164dc11 16-Aug-2016 Christoph M. Becker

Fix #72714: _xml_startElementHandler() segmentation fault

The issue is caused by an integer overflow when the `long` passed as
XML_OPTION_SKIP_TAGSTART is assigned to `xml_parser::toffse

Fix #72714: _xml_startElementHandler() segmentation fault

The issue is caused by an integer overflow when the `long` passed as
XML_OPTION_SKIP_TAGSTART is assigned to `xml_parser::toffset` which is
declared as `int`. We can simply work around this issue, by clipping
resulting negative values to 0 (and raising a notice in this case), because
the reasonable range for this value is certainly catered to by positive
`int`s.

However, there still remains the issue that `xml_parser::toffset` is later
added to `char *`s, which can cause OOB reads, so we make sure that the
upper bound never exceeds the strlen(). We eschew optimizing `SKIP_TAGSTART`
wrt. to the potentially duplicate strlen() call, because that code path is
unexpected anyway.

show more ...

# 98a155f3 19-Aug-2016 Anatol Belski

update NEWS

# a556543a 19-Aug-2016 Anatol Belski

update NEWS

# f6821936 19-Aug-2016 Anatol Belski

update NEWS

# 0880bd1b 19-Aug-2016 Davey Shafik

Update NEWS for 7.1.0RC1

# 566d65d2 19-Aug-2016 Xinchen Hui

Fixed bug #72888 (Segfault on clone on splFileObject)

# 0b1c8178 18-Aug-2016 Davey Shafik

Sync NEWS

# 2a1d35ec 18-Aug-2016 Anatol Belski

update NEWS

# e6d32217 18-Aug-2016 Anatol Belski

update NEWS

# 761d2f62 18-Aug-2016 Ferenc Kovacs

fix NEWS

# 52787e90 17-Aug-2016 Anatol Belski

sync NEWS

# f7d4733b 17-Aug-2016 Christoph M. Becker

Merge branch 'PHP-7.0' into PHP-7.1


1...<<241242243244245246247248249250>>...619