#
418da85f |
| 30-Jul-2016 |
Christoph M. Becker |
Fix #71606: Segmentation fault mb_strcut with HTML-ENTITIES The HTML decoding filter uses the `opaque` member of mbfl_convert_filter as buffer, but there was no copy constructor defined,
Fix #71606: Segmentation fault mb_strcut with HTML-ENTITIES The HTML decoding filter uses the `opaque` member of mbfl_convert_filter as buffer, but there was no copy constructor defined, what caused double frees when the filter is copied (what happens multiple times in mb_strcut(), for instance).
show more ...
|
#
bd63c0f5 |
| 23-Jul-2017 |
Nikita Popov |
Fix bug #73528 |
#
753cb8ce |
| 23-Jul-2017 |
Kalle Sommer Nielsen |
Change Côme's name to Come, sorry but Visual Studio just butchers everything =( |
#
f35f4590 |
| 23-Jul-2017 |
Kalle Sommer Nielsen |
Redesigned ext_skel to be written entirely in PHP with no dependencies, this means it will now run on Windows without Cygwin and other nonsense. It no longer includes a way to generate XML d
Redesigned ext_skel to be written entirely in PHP with no dependencies, this means it will now run on Windows without Cygwin and other nonsense. It no longer includes a way to generate XML documentation (the PHP documentation utilities already got tools for that in svn under phpdoc/doc-base) and it no longer support function stubs. $ php ext_skel.php --help php ext_skel.php --ext=<name> [--experimental] [--author=<name>] [--dir=<path>] [--std] [--onlyunix] [--onlywindows] [--help] --ext=<name> The name of the extension defined as <name> --experimental Passed if this extension is experimental, this creates the EXPERIMENTAL file in the root of the extension --author=<name> Your name, this is used if --header is passed and for the CREDITS file --dir=<path> Path to the directory for where extension should be created. Defaults to the directory of where this script lives --std If passed, the standard header and vim rules footer used in extensions that is included in the core, will be used --onlyunix Only generate configure scripts for Unix --onlywindows Only generate configure scripts for Windows --help This help Example usage: $ php ext_skel.php --ext test --std --experimental $ php ext_skel.php --ext kalle --author "Kalle Sommer Nielsen" $ php ext_skel.php --ext phpfi --dir "/home/kalle/dev/" --onlyunix
show more ...
|
#
1e9ad4a3 |
| 22-Jul-2017 |
Anatol Belski |
[ci skip] update NEWS |
#
c068818f |
| 22-Jul-2017 |
Anatol Belski |
[ci skip] update NEWS |
#
ad12da49 |
| 22-Jul-2017 |
Anatol Belski |
[ci skip] update NEWS |
#
76ce8744 |
| 22-Jul-2017 |
Bob Weinand |
Merge branch 'PHP-7.1' into PHP-7.2
|
#
134e713b |
| 22-Jul-2017 |
Bob Weinand |
Merge branch 'PHP-7.0' into PHP-7.1
|
#
bad5d0d6 |
| 22-Jul-2017 |
Bob Weinand |
Fixed bug #74954 (null deref and segfault in zend_generator_resume()) |
#
735b34c0 |
| 21-Jul-2017 |
Xinchen Hui |
Update NEWS |
#
a8f98fc7 |
| 21-Jul-2017 |
Xinchen Hui |
Update NEWS |
#
3a7b0027 |
| 21-Jul-2017 |
Xinchen Hui |
Fixed bug #74950 (nullpointer deref in simplexml_element_getDocNamespaces) |
#
62422302 |
| 21-Jul-2017 |
Xinchen Hui |
Update NEWS |
#
e2b240c1 |
| 21-Jul-2017 |
Xinchen Hui |
Update NEWS |
#
95d29088 |
| 21-Jul-2017 |
Xinchen Hui |
Fixed bug #74947 (Segfault in scanner on INF number) |
#
5e56d050 |
| 20-Jul-2017 |
Côme Chilliet |
Added ldap_exop_refresh helper for EXOP REFRESH operation on dds overlay ldap_exop_refresh(resource link, string dn, int ttl) Returns FALSE on failure, newttl on success |
#
4fa70b0b |
| 20-Jul-2017 |
Joe Watkins |
Merge branch 'PHP-7.2' * PHP-7.2: Fixed bug #74941 - Session fails to start after having headers sent
|
#
9b9184a4 |
| 19-Jul-2017 |
Sergei Morozov |
Fixed bug #74941 - Session fails to start after having headers sent |
#
d25049cc |
| 19-Jul-2017 |
Emmanuel Dreyfus |
Fixed bug #74851: Improve uniqid() performance uniqid() relies on microsecond-precise system clock to produce an unique identifier. In order to avoid using the same value, the origi
Fixed bug #74851: Improve uniqid() performance uniqid() relies on microsecond-precise system clock to produce an unique identifier. In order to avoid using the same value, the original implementation calls usleep(1) to wait for the next microsecond. Unfortunately, usleep() specification says "The suspension time may be longer than requested due to the scheduling of other activity by the system." Indeed, the pause may as as long as an entire execution slice, causing a uniqid() call to last more than 10 ms. This is fixed by replacing the usleep() call by time polling using gettimeofday() until the microsecond changes. Since the getttimeoday() system call lasts around a microsecond, only a small time is wasted calling multiple gettimeofday. On the benefit side, uniqid() performance in increased 10000 fold without changing its behavior.
show more ...
|
#
a398df3e |
| 19-Jul-2017 |
Kalle Sommer Nielsen |
Removed Bird(broken)step support from ODBC |
#
5b12b46a |
| 17-Jul-2017 |
Sergei Morozov |
Fixed bug #74936 - session_*() functions trigger a warning in read mode when the session is active |
#
8e7c99ac |
| 18-Jul-2017 |
Nikita Popov |
Merge branch 'PHP-7.0' into PHP-7.1
|
#
afc22828 |
| 06-Jun-2017 |
andrewnester |
Fixed #74699 - Broken ArrayIterator unserializing |
#
9cd82df0 |
| 18-Jul-2017 |
Nikita Popov |
Merge branch 'PHP-7.1' into PHP-7.2
|