Revision tags: php-4.4.3RC1, php-5.1.4, RELEASE_1_0_3, php-5.1.3, php-5.1.2, RELEASE_1_3 |
|
#
a1bbdf83 |
| 23-Apr-2006 |
Ilia Alshanetsky |
Fixed bug #37162 (wddx does not build as a shared extension). #Patch By: jdolecek at NetBSD dot org
|
Revision tags: php-5.1.3RC3, php-5.1.3RC2, php-5.1.3RC1, RELEASE_1_2 |
|
#
329198a9 |
| 28-Jan-2006 |
Frank M. Kromann |
Add header so WDDX builds as shared
|
Revision tags: RELEASE_0_9_4, RELEASE_1_0_4, php-4.4.2, php-5.1.2RC2, php-4.4.2RC2 |
|
#
5bd93221 |
| 01-Jan-2006 |
foobar |
bump year and license version
|
Revision tags: php-5.1.2RC1, RELEASE_1_1_1, RELEASE_1_1, RELEASE_1_0 |
|
#
3e669bc9 |
| 06-Dec-2005 |
foobar |
MFH: nuke php3 legacy
|
Revision tags: RELEASE_2_0_2 |
|
#
c6007986 |
| 30-Nov-2005 |
Ilia Alshanetsky |
Fixed bug #35410 (wddx_deserialize() doesn't handle large ints as keys properly).
|
Revision tags: php-5.1.1, php-5.1.0, php-4.4.2RC1, RELEASE_0_9_3, php-5.1.0RC6, php-5.1.0RC5, RELEASE_2_0_1, RELEASE_1_0RC2, php-4.4.1, php-5.1.0RC4, RELEASE_0_9_2, RELEASE_0_9_1, php-5.1.0RC3, php-5.1.0RC2, php-4.4.1RC1 |
|
#
e1791bed |
| 06-Oct-2005 |
Rob Richards |
MFH: use sizeof instead of define
|
#
93ffc140 |
| 05-Oct-2005 |
Rob Richards |
MFH: fix buffer lengths passed to snprintf
|
Revision tags: RELEASE_0_9_0 |
|
#
4b9b5505 |
| 16-Sep-2005 |
Antony Dovgal |
fix #34505 (possible memory corruption when unmangling properties with empty names) 2nd part
|
Revision tags: RELEASE_1_0RC1, PRE_NEW_OCI8_EXTENSION, php-5.1.0RC2_PRE, php-5.0.5 |
|
#
307ec8ec |
| 31-Aug-2005 |
foobar |
MFH:- Fixed bug #34306 (wddx_serialize_value() crashes with long array keys)
|
Revision tags: php-5.0.5RC2, php-5.0.5RC1, php-5.1.0RC1, BEFORE_UNICODE_MERGE |
|
#
2a37a0c4 |
| 10-Aug-2005 |
Ilia Alshanetsky |
MFH: Fixed bug #34068 (Numeric string as array key not cast to integer in wddx_deserialize()).
|
Revision tags: RELEASE_2_0_0 |
|
#
23e671a5 |
| 03-Aug-2005 |
foobar |
- Bumber up year
|
Revision tags: RELEASE_0_9, php-5.1.0b3, php-4.4.0, php-4.4.0RC2, php-5.1.0b2 |
|
#
3cdc8952 |
| 19-Jun-2005 |
Derick Rethans |
- Added backward compability wrapper "php_parse_date()". - Changed WDDX extension to use new date parsing code. - Removed all remnants to the old parser. #- I hope that I didn't break the
- Added backward compability wrapper "php_parse_date()". - Changed WDDX extension to use new date parsing code. - Removed all remnants to the old parser. #- I hope that I didn't break the .dsp's...
show more ...
|
Revision tags: php-4.4.0RC1, php-5.1.0b1, php-5.0.1b1 |
|
#
9b57f5ff |
| 30-May-2005 |
foobar |
- Fixed bug #33185 (--enable-session=shared does not build)
|
#
37887f1b |
| 11-Apr-2005 |
Dmitry Stogov |
Fixed SIGSEGV on serializing data with circular references
|
#
37eee732 |
| 11-Apr-2005 |
Dmitry Stogov |
Support for encoding/decoding of private and protected members
|
Revision tags: RELEASE_0_3, php-5.0.4, php-4.3.11, php-5.0.4RC2, php-4.3.11RC2, php-5.0.4RC1, php-4.3.11RC1 |
|
#
f3a5d430 |
| 12-Mar-2005 |
Marcus Boerger |
- Fix another memleak
|
#
6c73805c |
| 12-Mar-2005 |
Marcus Boerger |
- Fix memleak
|
Revision tags: RELEASE_0_2_4, RELEASE_0_2_3, RELEASE_0_2_2, RELEASE_0_2_1, RELEASE_0_2, php-5.0.3, php-4.3.10, SQLITE_4_3_20041227, php-5.0.3RC2, php-4.3.10RC2, php-5.0.3RC1, php-4.3.10RC1, PRE_NEW_VM_GEN_PATCH, php-5.0.2, php-4.3.9, php-5.0.2RC1, php-4.3.9RC3, PRE_ZEND_VM_DISPATCH_PATCH, php-4.3.9RC2, php-5.0.1, php-5.0.1RC2, php-4.3.9RC1, php-5.0.1RC1, RELEASE_0_1 |
|
#
56f8195f |
| 19-Jul-2004 |
Andi Gutmans |
- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE() used to return "" and not bool(false). It's not worth keeping it because STR_FREE() and zval_dtor() always have
- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE() used to return "" and not bool(false). It's not worth keeping it because STR_FREE() and zval_dtor() always have to check for it and it slows down the general case. In addition, it seems that empty_string has been abused quite a lot, and was used not only for setting zval's but generally in PHP code instead of "", which wasn't the intention. Last but not least, nuking empty_string should improve stability as I doubt every place correctly checked if they are not mistakenly erealloc()'ing it or calling efree() on it. NOTE: Some code is probably broken. Each extension maintainer should check and see that my changes are OK. Also, I haven't had time to touch PECL yet. Will try and do it tomorrow.
show more ...
|
Revision tags: php-5.0.0RC4, php-5.0.0, php-4.3.8 |
|
#
690ca62d |
| 30-Jun-2004 |
Ilia Alshanetsky |
Do not use alloca() where it can be abused through user input.
|
Revision tags: php-5.0.0RC3, php-5.0.0RC3RC2, php-4.3.7, php-5.0.0RC3RC1, php-4.3.7RC1, RELEASE_0_1_1, php-5.0.0RC2, php-5.0.0RC2RC2, php-4.3.6, php-5.0.0RC2RC1, php-4.3.6RC3, php-4.3.6RC2, php-4.3.6RC1, php-4.3.5, php-4.3.5RC4, php-5.0.0RC1, php-5.0.0RC1RC2, php-5.0.0RC1RC1, RELEASE_0_2_0 |
|
#
3d83a4db |
| 29-Feb-2004 |
Moriyoshi Koizumi |
- Bugfix #27287 (wddx segfaults during deserialization)
|
Revision tags: php-4.3.5RC3, php-5.0.0b4, php-5.0.0b4RC1, php-4.3.5RC2, RELEASE_1_3b6, php_ibase_before_split, php-4.3.5RC1 |
|
#
dbeb4158 |
| 08-Jan-2004 |
Andi Gutmans |
- A belated happy holidays and PHP 5
|
Revision tags: php-5.0.0b3, php-5.0.0b3RC2, php-5.0.0b3RC1, php-4.3.4, php-4.3.4RC3, php-5.0.0b2, RELEASE_2_0_0RC1, php-5.0.0b2RC1, php-4.3.4RC2 |
|
#
3929cf22 |
| 20-Oct-2003 |
Moriyoshi Koizumi |
Fix compiler warnings
|
Revision tags: RELEASE_1_3b3, BEFORE_HANDLERS_RESHUFFLE, RELEASE_1_3b2, php-4.3.4RC1, RELEASE_0_7, php-4.3.3, php-4.3.3RC4 |
|
#
93bcd55e |
| 12-Aug-2003 |
Ilia Alshanetsky |
emalloc -> safe_emalloc
|
Revision tags: RELEASE_0_5_3, php-4.3.3RC3, RELEASE_0_5_2, RELEASE_1_2b5, BEFORE_ARG_INFO, php-4.3.3RC2, php-5.0.0b1 |
|
#
58c25fb2 |
| 28-Jun-2003 |
Ilia Alshanetsky |
Added missing handling of dateTime Fixed compiler warning involving streams Added a test case for wddx_deserialize()
|
Revision tags: php-4.3.3RC1 |
|
#
f68c7ff2 |
| 10-Jun-2003 |
James Cox |
updating license information in the headers.
|