History log of /PHP-5.6/ (Results 401 – 425 of 63781)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
e95625f402-Aug-2016 Anatol Belski

update NEWS

40b3a03102-Aug-2016 Anatol Belski

cleanup table after test

90c6cbd028-Jul-2016 Pablo Santiago Sánchez

- lastInsertId using Postgres Lastval() function

c9d3ff0c30-Jul-2016 Nikita Popov

Revert "Fixed bug #71219"

This reverts commit 14d674442ef86ad4e862228a1ff5ecd322ae7759.

I misread the discussion on the bug -- this is not the correct
fix. However the other pro

Revert "Fixed bug #71219"

This reverts commit 14d674442ef86ad4e862228a1ff5ecd322ae7759.

I misread the discussion on the bug -- this is not the correct
fix. However the other proposed fix does not work either, so just
reverting for now.

show more ...

14d6744430-Jul-2016 Nikita Popov

Fixed bug #71219

9961343130-Jul-2016 Nikita Popov

Add missing TSRMLS_FETCH()

e87ac68830-Jul-2016 Nikita Popov

Fixed bug #72142

1d32b80930-Jul-2016 ju1ius

fixes bad address given to onig_error_code_to_str

Closes bug #72710

(cherry picked from commit 0fb7eb6723bcc6fd98053911543e801edb5ab763)

f67ccd4a28-Jul-2016 Christoph M. Becker

Fix #71894: AddressSanitizer: global-buffer-overflow in zif_cal_from_jd

Julian days < 347998 denote invalid Jewish calendar dates, so
cal_from_jd($jd, CAL_JEWISH) and jdmonthname($jd, CA

Fix #71894: AddressSanitizer: global-buffer-overflow in zif_cal_from_jd

Julian days < 347998 denote invalid Jewish calendar dates, so
cal_from_jd($jd, CAL_JEWISH) and jdmonthname($jd, CAL_MONTH_JEWISH) should
actually fail. For BC we don't yet let them though, but we fix the OOB read
that happens in this case, and we also adjust cal_from_jd()'s return value
to have empty strings for "abbrevdayname" and "dayname" instead of "Sun"/
"Sunday" and NULL for "dow" instead of 0, which doesn't make any sense.

show more ...

5c458c9b28-Jul-2016 Christoph M. Becker

Implement FR #65462: Please add tests for gregorian and jewish overflow fixes

7ab39e2f28-Jul-2016 Christoph M. Becker

Fix #67976: cal_days_month() fails for final month of the French calendar

The French calendar ends on 0014-13-05, so trying to calculate the Julian
day of 0015-01-01 fails. We cater to t

Fix #67976: cal_days_month() fails for final month of the French calendar

The French calendar ends on 0014-13-05, so trying to calculate the Julian
day of 0015-01-01 fails. We cater to that by returning the hard-coded value.

show more ...

ced2a80e28-Jul-2016 Christoph M. Becker

Bug #69975 had already been fixed as of PHP 5.6.12

Also CVE-2015-8879 had been assigned.

c301adbb28-Jul-2016 Christoph M. Becker

Fix #72677: SCM_CREDENTIALS related tests should be skipped on AIX

Patch provided by matthieu dot sarter dot external at atos dot net.

6e886f0728-Jul-2016 Christoph M. Becker

Fix #72676: Test cli_process_title_unix fails on AIX

Patch provided by matthieu dot sarter dot external at atos dot net.

ee6900c328-Jul-2016 Christoph M. Becker

Fix #72694: mb_ereg_search_setpos does not accept a string's last position

Setting the search position immediately behind the last character should be
allowed, so we fix this off-by-one

Fix #72694: mb_ereg_search_setpos does not accept a string's last position

Setting the search position immediately behind the last character should be
allowed, so we fix this off-by-one error.

show more ...

56cdaecb28-Jul-2016 Christoph M. Becker

Fix #72693: mb_ereg_search increments search position when a match zero-width

That's caused by an off-by-one error, which we fix.

d276e6a828-Jul-2016 Christoph M. Becker

Fix #72691: mb_ereg_search raises a warning if a match zero-width

That warning doesn't make sense (PCRE doesn't throw such a warning either),
so we remove it.

0ae8c33728-Jul-2016 Christoph M. Becker

Bug #6836 has already been fixed in PHP 5.6.24 and 7.0.9

30a5ed3a28-Jul-2016 Pierrick Charron

Fixed bug #71929 (CURLINFO_CERTINFO data parsing error).

ed16f2fe27-Jul-2016 Pierrick Charron

Update NEWS

315c053627-Jul-2016 Christoph M. Becker

Fix #72688: preg_match missing group names in matches

We have to multiply with 0x100 to properly scale the high byte.

cc125f2727-Jul-2016 Christoph M. Becker

Implement #72653: SQLite should allow opening with empty filename

From the [sqlite3_open](https://www.sqlite.org/c3ref/open.html) docs:

| If the filename is an empty string, then a

Implement #72653: SQLite should allow opening with empty filename

From the [sqlite3_open](https://www.sqlite.org/c3ref/open.html) docs:

| If the filename is an empty string, then a private, temporary on-disk
| database will be created. This private database will be automatically
| deleted as soon as the database connection is closed.

We make that facility available to userland.

While we're at it, we also do some minor optimizations, remove the
unnecessary check for NUL characters in filename, which is already catered
to by ZPP(p), and add a missing `return` in case db_obj isn't initialized.

show more ...

cce457c625-Jul-2016 Ville Hukkamäki

Fix bug #72667

Open data stream after receiving PASV reply, before sending the
main request.

Included test cases for opendir() with ftp:// and ftps:// wrappers.
Test cases r

Fix bug #72667

Open data stream after receiving PASV reply, before sending the
main request.

Included test cases for opendir() with ftp:// and ftps:// wrappers.
Test cases re-use ext/ftp/tests/server.inc

Conflicts:
ext/standard/ftp_fopen_wrapper.c

show more ...

074b86d827-Jul-2016 Pierrick Charron

Fixed bug #72686 (zlib: url support is broken).

zlib: support is broken since a really long time.
It never worked on versions >= PHP5.6 so we can just remove
this dead code.

Fixed bug #72686 (zlib: url support is broken).

zlib: support is broken since a really long time.
It never worked on versions >= PHP5.6 so we can just remove
this dead code.

Bug was introduced 2006-05-14 (Before 5.2.0)

show more ...

4c2e1a1327-Jul-2016 Pierrick Charron

Fixed bug #72684 (AppendIterator segfault with closed generator)

1...<<11121314151617181920>>...2552