[PHP-BUG] Bug #61828 [NEW]: Memory when calling DirectoryIterator's constructor twice
From: felipe Operating system: PHP version: Irrelevant Package: SPL related Bug Type: Bug Bug description:Memory when calling DirectoryIterator's constructor twice Description: See below. Test script: --- __construct('.'); Actual result: -- /home/felipe/dev/php-src/main/streams/streams.c(530) : Stream of type 'dir' 0x7fd490d7e5c0 (path:(null)) was not closed [Mon Apr 23 13:07:34 2012] Script: '../bug.php' /home/felipe/dev/php-src/main/streams/streams.c(292) : Freeing 0x7FD490D7E5C0 (248 bytes), script=../bug.php /home/felipe/dev/php-src/main/streams/plain_wrapper.c(883) : Actual location (location was relayed) [Mon Apr 23 13:07:34 2012] Script: '../bug.php' /home/felipe/dev/php-src/ext/spl/spl_directory.c(252) : Freeing 0x7FD490D7EA08 (2 bytes), script=../bug.php === Total 2 memory leaks detected === -- Edit bug report at https://bugs.php.net/bug.php?id=61828&edit=1 -- Try a snapshot (PHP 5.4): https://bugs.php.net/fix.php?id=61828&r=trysnapshot54 Try a snapshot (PHP 5.3): https://bugs.php.net/fix.php?id=61828&r=trysnapshot53 Try a snapshot (trunk): https://bugs.php.net/fix.php?id=61828&r=trysnapshottrunk Fixed in SVN: https://bugs.php.net/fix.php?id=61828&r=fixed Fixed in SVN and need be documented: https://bugs.php.net/fix.php?id=61828&r=needdocs Fixed in release: https://bugs.php.net/fix.php?id=61828&r=alreadyfixed Need backtrace: https://bugs.php.net/fix.php?id=61828&r=needtrace Need Reproduce Script: https://bugs.php.net/fix.php?id=61828&r=needscript Try newer version: https://bugs.php.net/fix.php?id=61828&r=oldversion Not developer issue: https://bugs.php.net/fix.php?id=61828&r=support Expected behavior: https://bugs.php.net/fix.php?id=61828&r=notwrong Not enough info: https://bugs.php.net/fix.php?id=61828&r=notenoughinfo Submitted twice: https://bugs.php.net/fix.php?id=61828&r=submittedtwice register_globals: https://bugs.php.net/fix.php?id=61828&r=globals PHP 4 support discontinued: https://bugs.php.net/fix.php?id=61828&r=php4 Daylight Savings:https://bugs.php.net/fix.php?id=61828&r=dst IIS Stability: https://bugs.php.net/fix.php?id=61828&r=isapi Install GNU Sed: https://bugs.php.net/fix.php?id=61828&r=gnused Floating point limitations: https://bugs.php.net/fix.php?id=61828&r=float No Zend Extensions: https://bugs.php.net/fix.php?id=61828&r=nozend MySQL Configuration Error: https://bugs.php.net/fix.php?id=61828&r=mysqlcfg
[PHP-BUG] Bug #61829 [NEW]: Memory leak when calling MessageFormatter's constructor twice
From: felipe Operating system: PHP version: Irrelevant Package: I18N and L10N related Bug Type: Bug Bug description:Memory leak when calling MessageFormatter's constructor twice Description: See below. Test script: --- __construct(1,1); Actual result: -- [Mon Apr 23 15:14:57 2012] Script: '../bug.php' /home/felipe/dev/php-src/ext/intl/msgformat/msgformat.c(71) : Freeing 0x7FD69DA518B0 (2 bytes), script=../bug.php === Total 1 memory leaks detected === -- Edit bug report at https://bugs.php.net/bug.php?id=61829&edit=1 -- Try a snapshot (PHP 5.4): https://bugs.php.net/fix.php?id=61829&r=trysnapshot54 Try a snapshot (PHP 5.3): https://bugs.php.net/fix.php?id=61829&r=trysnapshot53 Try a snapshot (trunk): https://bugs.php.net/fix.php?id=61829&r=trysnapshottrunk Fixed in SVN: https://bugs.php.net/fix.php?id=61829&r=fixed Fixed in SVN and need be documented: https://bugs.php.net/fix.php?id=61829&r=needdocs Fixed in release: https://bugs.php.net/fix.php?id=61829&r=alreadyfixed Need backtrace: https://bugs.php.net/fix.php?id=61829&r=needtrace Need Reproduce Script: https://bugs.php.net/fix.php?id=61829&r=needscript Try newer version: https://bugs.php.net/fix.php?id=61829&r=oldversion Not developer issue: https://bugs.php.net/fix.php?id=61829&r=support Expected behavior: https://bugs.php.net/fix.php?id=61829&r=notwrong Not enough info: https://bugs.php.net/fix.php?id=61829&r=notenoughinfo Submitted twice: https://bugs.php.net/fix.php?id=61829&r=submittedtwice register_globals: https://bugs.php.net/fix.php?id=61829&r=globals PHP 4 support discontinued: https://bugs.php.net/fix.php?id=61829&r=php4 Daylight Savings:https://bugs.php.net/fix.php?id=61829&r=dst IIS Stability: https://bugs.php.net/fix.php?id=61829&r=isapi Install GNU Sed: https://bugs.php.net/fix.php?id=61829&r=gnused Floating point limitations: https://bugs.php.net/fix.php?id=61829&r=float No Zend Extensions: https://bugs.php.net/fix.php?id=61829&r=nozend MySQL Configuration Error: https://bugs.php.net/fix.php?id=61829&r=mysqlcfg
Bug #61877 [PATCH]: Array key not casted to Integer.
Edit report at https://bugs.php.net/bug.php?id=61877&edit=1 ID: 61877 Patch added by: fel...@php.net Reported by:fred dot stcm at gmail dot com Summary:Array key not casted to Integer. Status: Open Type: Bug Package:SimpleXML related PHP Version:5.4.1 Block user comment: N Private report: N New Comment: The following patch has been added/updated: Patch Name: simplexml-patch Revision: 1335819480 URL: https://bugs.php.net/patch-display.php?bug=61877&patch=simplexml-patch&revision=1335819480 Previous Comments: [2012-04-30 02:23:42] fred dot stcm at gmail dot com Description: PHP Array manual: "Floats are also cast to integers, which means that the fractional part will be truncated. E.g. the key 8.7 will actually be stored under 8." But this rule is ignored by SimpleXML object's array. Test script: --- $xml = simplexml_load_string("01"); $i = (int) 1; $d = (float) 1; $xml->number[$d] = 999; echo $xml->number[$d] .", ". $xml->number[$i]; Expected result: 999, 999 Actual result: -- 999, 1 -- Edit this bug report at https://bugs.php.net/bug.php?id=61877&edit=1
[PHP-BUG] Bug #62081 [NEW]: IntlDateFormatter constructor leaks memory when called twice
From: felipe Operating system: Linux PHP version: Irrelevant Package: I18N and L10N related Bug Type: Bug Bug description:IntlDateFormatter constructor leaks memory when called twice Description: See below: Test script: --- __construct(1,1,1,1,1); Actual result: -- [Sun May 20 16:32:34 2012] Script: '/home/felipe/dev/bug.php' /home/felipe/dev/php5_3/ext/intl/dateformat/dateformat.c(149) : Freeing 0x02D8A4C8 (2 bytes), script=/home/felipe/dev/bug.php === Total 1 memory leaks detected === -- Edit bug report at https://bugs.php.net/bug.php?id=62081&edit=1 -- Try a snapshot (PHP 5.4): https://bugs.php.net/fix.php?id=62081&r=trysnapshot54 Try a snapshot (PHP 5.3): https://bugs.php.net/fix.php?id=62081&r=trysnapshot53 Try a snapshot (trunk): https://bugs.php.net/fix.php?id=62081&r=trysnapshottrunk Fixed in SVN: https://bugs.php.net/fix.php?id=62081&r=fixed Fixed in SVN and need be documented: https://bugs.php.net/fix.php?id=62081&r=needdocs Fixed in release: https://bugs.php.net/fix.php?id=62081&r=alreadyfixed Need backtrace: https://bugs.php.net/fix.php?id=62081&r=needtrace Need Reproduce Script: https://bugs.php.net/fix.php?id=62081&r=needscript Try newer version: https://bugs.php.net/fix.php?id=62081&r=oldversion Not developer issue: https://bugs.php.net/fix.php?id=62081&r=support Expected behavior: https://bugs.php.net/fix.php?id=62081&r=notwrong Not enough info: https://bugs.php.net/fix.php?id=62081&r=notenoughinfo Submitted twice: https://bugs.php.net/fix.php?id=62081&r=submittedtwice register_globals: https://bugs.php.net/fix.php?id=62081&r=globals PHP 4 support discontinued: https://bugs.php.net/fix.php?id=62081&r=php4 Daylight Savings:https://bugs.php.net/fix.php?id=62081&r=dst IIS Stability: https://bugs.php.net/fix.php?id=62081&r=isapi Install GNU Sed: https://bugs.php.net/fix.php?id=62081&r=gnused Floating point limitations: https://bugs.php.net/fix.php?id=62081&r=float No Zend Extensions: https://bugs.php.net/fix.php?id=62081&r=nozend MySQL Configuration Error: https://bugs.php.net/fix.php?id=62081&r=mysqlcfg
[PHP-BUG] Bug #62083 [NEW]: grapheme_extract() memory leaks
From: felipe Operating system: Linux PHP version: Irrelevant Package: I18N and L10N related Bug Type: Bug Bug description:grapheme_extract() memory leaks Description: See below: Test script: --- https://bugs.php.net/bug.php?id=62083&edit=1 -- Try a snapshot (PHP 5.4): https://bugs.php.net/fix.php?id=62083&r=trysnapshot54 Try a snapshot (PHP 5.3): https://bugs.php.net/fix.php?id=62083&r=trysnapshot53 Try a snapshot (trunk): https://bugs.php.net/fix.php?id=62083&r=trysnapshottrunk Fixed in SVN: https://bugs.php.net/fix.php?id=62083&r=fixed Fixed in SVN and need be documented: https://bugs.php.net/fix.php?id=62083&r=needdocs Fixed in release: https://bugs.php.net/fix.php?id=62083&r=alreadyfixed Need backtrace: https://bugs.php.net/fix.php?id=62083&r=needtrace Need Reproduce Script: https://bugs.php.net/fix.php?id=62083&r=needscript Try newer version: https://bugs.php.net/fix.php?id=62083&r=oldversion Not developer issue: https://bugs.php.net/fix.php?id=62083&r=support Expected behavior: https://bugs.php.net/fix.php?id=62083&r=notwrong Not enough info: https://bugs.php.net/fix.php?id=62083&r=notenoughinfo Submitted twice: https://bugs.php.net/fix.php?id=62083&r=submittedtwice register_globals: https://bugs.php.net/fix.php?id=62083&r=globals PHP 4 support discontinued: https://bugs.php.net/fix.php?id=62083&r=php4 Daylight Savings:https://bugs.php.net/fix.php?id=62083&r=dst IIS Stability: https://bugs.php.net/fix.php?id=62083&r=isapi Install GNU Sed: https://bugs.php.net/fix.php?id=62083&r=gnused Floating point limitations: https://bugs.php.net/fix.php?id=62083&r=float No Zend Extensions: https://bugs.php.net/fix.php?id=62083&r=nozend MySQL Configuration Error: https://bugs.php.net/fix.php?id=62083&r=mysqlcfg
[PHP-BUG] Bug #62565 [NEW]: Crashes due non-initialized internal properties_table
From: felipe Operating system: PHP version: master-Git-2012-07-14 (Git) Package: Scripting Engine problem Bug Type: Bug Bug description:Crashes due non-initialized internal properties_table Description: I've checked using my fuzzer some crash due non-initialized property_table, see below. These issues are related to the missing object_properties_init() call. Test script: --- Using a basic template code: https://bugs.php.net/bug.php?id=62565&edit=1 -- Try a snapshot (PHP 5.4): https://bugs.php.net/fix.php?id=62565&r=trysnapshot54 Try a snapshot (PHP 5.3): https://bugs.php.net/fix.php?id=62565&r=trysnapshot53 Try a snapshot (trunk): https://bugs.php.net/fix.php?id=62565&r=trysnapshottrunk Fixed in SVN: https://bugs.php.net/fix.php?id=62565&r=fixed Fixed in SVN and need be documented: https://bugs.php.net/fix.php?id=62565&r=needdocs Fixed in release: https://bugs.php.net/fix.php?id=62565&r=alreadyfixed Need backtrace: https://bugs.php.net/fix.php?id=62565&r=needtrace Need Reproduce Script: https://bugs.php.net/fix.php?id=62565&r=needscript Try newer version: https://bugs.php.net/fix.php?id=62565&r=oldversion Not developer issue: https://bugs.php.net/fix.php?id=62565&r=support Expected behavior: https://bugs.php.net/fix.php?id=62565&r=notwrong Not enough info: https://bugs.php.net/fix.php?id=62565&r=notenoughinfo Submitted twice: https://bugs.php.net/fix.php?id=62565&r=submittedtwice register_globals: https://bugs.php.net/fix.php?id=62565&r=globals PHP 4 support discontinued: https://bugs.php.net/fix.php?id=62565&r=php4 Daylight Savings:https://bugs.php.net/fix.php?id=62565&r=dst IIS Stability: https://bugs.php.net/fix.php?id=62565&r=isapi Install GNU Sed: https://bugs.php.net/fix.php?id=62565&r=gnused Floating point limitations: https://bugs.php.net/fix.php?id=62565&r=float No Zend Extensions: https://bugs.php.net/fix.php?id=62565&r=nozend MySQL Configuration Error: https://bugs.php.net/fix.php?id=62565&r=mysqlcfg
[PHP-BUG] Bug #62904 [NEW]: Crash when cloning an object wich inherits SplFixedArray
From: felipe Operating system: PHP version: Irrelevant Package: SPL related Bug Type: Bug Bug description:Crash when cloning an object wich inherits SplFixedArray Description: See below. Test script: --- getMessage()); } Actual result: -- Program received signal SIGSEGV, Segmentation fault. 0x082fc564 in spl_fixedarray_object_new_ex (class_type=0xb6a06f74, obj=0xbfffbf08, orig=0xb6a05964, clone_orig=1, tsrm_ls=0x8942050) at /home/felipe/dev/php-src/ext/spl/spl_fixedarray.c:228 228 spl_fixedarray_init(intern->array, other->array->size TSRMLS_CC); (gdb) p other->array $6 = (spl_fixedarray *) 0x0 -- Edit bug report at https://bugs.php.net/bug.php?id=62904&edit=1 -- Try a snapshot (PHP 5.4): https://bugs.php.net/fix.php?id=62904&r=trysnapshot54 Try a snapshot (PHP 5.3): https://bugs.php.net/fix.php?id=62904&r=trysnapshot53 Try a snapshot (trunk): https://bugs.php.net/fix.php?id=62904&r=trysnapshottrunk Fixed in SVN: https://bugs.php.net/fix.php?id=62904&r=fixed Fixed in SVN and need be documented: https://bugs.php.net/fix.php?id=62904&r=needdocs Fixed in release: https://bugs.php.net/fix.php?id=62904&r=alreadyfixed Need backtrace: https://bugs.php.net/fix.php?id=62904&r=needtrace Need Reproduce Script: https://bugs.php.net/fix.php?id=62904&r=needscript Try newer version: https://bugs.php.net/fix.php?id=62904&r=oldversion Not developer issue: https://bugs.php.net/fix.php?id=62904&r=support Expected behavior: https://bugs.php.net/fix.php?id=62904&r=notwrong Not enough info: https://bugs.php.net/fix.php?id=62904&r=notenoughinfo Submitted twice: https://bugs.php.net/fix.php?id=62904&r=submittedtwice register_globals: https://bugs.php.net/fix.php?id=62904&r=globals PHP 4 support discontinued: https://bugs.php.net/fix.php?id=62904&r=php4 Daylight Savings:https://bugs.php.net/fix.php?id=62904&r=dst IIS Stability: https://bugs.php.net/fix.php?id=62904&r=isapi Install GNU Sed: https://bugs.php.net/fix.php?id=62904&r=gnused Floating point limitations: https://bugs.php.net/fix.php?id=62904&r=float No Zend Extensions: https://bugs.php.net/fix.php?id=62904&r=nozend MySQL Configuration Error: https://bugs.php.net/fix.php?id=62904&r=mysqlcfg
[PHP-BUG] Bug #62915 [NEW]: Memory leak when cloning unconstructed object
From: felipe Operating system: PHP version: Irrelevant Package: I18N and L10N related Bug Type: Bug Bug description:Memory leak when cloning unconstructed object Description: See below. Test script: --- getMessage()); } Actual result: -- /home/felipe/dev/php-src/Zend/zend_API.c(1097) : Freeing 0x7F4A715F1288 (32 bytes), script=- [Thu Aug 23 20:13:00 2012] Script: '-' /home/felipe/dev/php-src/Zend/zend_API.c(1098) : Freeing 0x7F4A715F1DD8 (5 bytes), script=- /home/felipe/dev/php-src/Zend/zend_variables.c(121) : Actual location (location was relayed) === Total 2 memory leaks detected ===]]> -- Edit bug report at https://bugs.php.net/bug.php?id=62915&edit=1 -- Try a snapshot (PHP 5.4): https://bugs.php.net/fix.php?id=62915&r=trysnapshot54 Try a snapshot (PHP 5.3): https://bugs.php.net/fix.php?id=62915&r=trysnapshot53 Try a snapshot (trunk): https://bugs.php.net/fix.php?id=62915&r=trysnapshottrunk Fixed in SVN: https://bugs.php.net/fix.php?id=62915&r=fixed Fixed in SVN and need be documented: https://bugs.php.net/fix.php?id=62915&r=needdocs Fixed in release: https://bugs.php.net/fix.php?id=62915&r=alreadyfixed Need backtrace: https://bugs.php.net/fix.php?id=62915&r=needtrace Need Reproduce Script: https://bugs.php.net/fix.php?id=62915&r=needscript Try newer version: https://bugs.php.net/fix.php?id=62915&r=oldversion Not developer issue: https://bugs.php.net/fix.php?id=62915&r=support Expected behavior: https://bugs.php.net/fix.php?id=62915&r=notwrong Not enough info: https://bugs.php.net/fix.php?id=62915&r=notenoughinfo Submitted twice: https://bugs.php.net/fix.php?id=62915&r=submittedtwice register_globals: https://bugs.php.net/fix.php?id=62915&r=globals PHP 4 support discontinued: https://bugs.php.net/fix.php?id=62915&r=php4 Daylight Savings:https://bugs.php.net/fix.php?id=62915&r=dst IIS Stability: https://bugs.php.net/fix.php?id=62915&r=isapi Install GNU Sed: https://bugs.php.net/fix.php?id=62915&r=gnused Floating point limitations: https://bugs.php.net/fix.php?id=62915&r=float No Zend Extensions: https://bugs.php.net/fix.php?id=62915&r=nozend MySQL Configuration Error: https://bugs.php.net/fix.php?id=62915&r=mysqlcfg
[PHP-BUG] Bug #62930 [NEW]: Memory leak when using empty list()
From: felipe Operating system: PHP version: master-Git-2012-08-25 (Git) Package: Scripting Engine problem Bug Type: Bug Bug description:Memory leak when using empty list() Description: See below. Test script: --- https://bugs.php.net/bug.php?id=62930&edit=1 -- Try a snapshot (PHP 5.4): https://bugs.php.net/fix.php?id=62930&r=trysnapshot54 Try a snapshot (PHP 5.3): https://bugs.php.net/fix.php?id=62930&r=trysnapshot53 Try a snapshot (trunk): https://bugs.php.net/fix.php?id=62930&r=trysnapshottrunk Fixed in SVN: https://bugs.php.net/fix.php?id=62930&r=fixed Fixed in SVN and need be documented: https://bugs.php.net/fix.php?id=62930&r=needdocs Fixed in release: https://bugs.php.net/fix.php?id=62930&r=alreadyfixed Need backtrace: https://bugs.php.net/fix.php?id=62930&r=needtrace Need Reproduce Script: https://bugs.php.net/fix.php?id=62930&r=needscript Try newer version: https://bugs.php.net/fix.php?id=62930&r=oldversion Not developer issue: https://bugs.php.net/fix.php?id=62930&r=support Expected behavior: https://bugs.php.net/fix.php?id=62930&r=notwrong Not enough info: https://bugs.php.net/fix.php?id=62930&r=notenoughinfo Submitted twice: https://bugs.php.net/fix.php?id=62930&r=submittedtwice register_globals: https://bugs.php.net/fix.php?id=62930&r=globals PHP 4 support discontinued: https://bugs.php.net/fix.php?id=62930&r=php4 Daylight Savings:https://bugs.php.net/fix.php?id=62930&r=dst IIS Stability: https://bugs.php.net/fix.php?id=62930&r=isapi Install GNU Sed: https://bugs.php.net/fix.php?id=62930&r=gnused Floating point limitations: https://bugs.php.net/fix.php?id=62930&r=float No Zend Extensions: https://bugs.php.net/fix.php?id=62930&r=nozend MySQL Configuration Error: https://bugs.php.net/fix.php?id=62930&r=mysqlcfg
[PHP-BUG] Bug #62931 [NEW]: Crash on foreach when using list() => $var
From: felipe Operating system: PHP version: master-Git-2012-08-25 (Git) Package: Scripting Engine problem Bug Type: Bug Bug description:Crash on foreach when using list() => $var Description: I wonder that such syntax is not even supposed to be allowed. See below. Test script: --- $x) { } Actual result: -- Program received signal SIGSEGV, Segmentation fault. 0x0083af12 in zend_do_end_variable_parse (variable=0x7fff8880, type=1, arg_offset=0, tsrm_ls=0x1058090) at /home/felipe/dev/php-src/Zend/zend_compile.c:1303 1303le = fetch_list_ptr->head; (gdb) p fetch_list_ptr $1 = (zend_llist *) 0x0 -- Edit bug report at https://bugs.php.net/bug.php?id=62931&edit=1 -- Try a snapshot (PHP 5.4): https://bugs.php.net/fix.php?id=62931&r=trysnapshot54 Try a snapshot (PHP 5.3): https://bugs.php.net/fix.php?id=62931&r=trysnapshot53 Try a snapshot (trunk): https://bugs.php.net/fix.php?id=62931&r=trysnapshottrunk Fixed in SVN: https://bugs.php.net/fix.php?id=62931&r=fixed Fixed in SVN and need be documented: https://bugs.php.net/fix.php?id=62931&r=needdocs Fixed in release: https://bugs.php.net/fix.php?id=62931&r=alreadyfixed Need backtrace: https://bugs.php.net/fix.php?id=62931&r=needtrace Need Reproduce Script: https://bugs.php.net/fix.php?id=62931&r=needscript Try newer version: https://bugs.php.net/fix.php?id=62931&r=oldversion Not developer issue: https://bugs.php.net/fix.php?id=62931&r=support Expected behavior: https://bugs.php.net/fix.php?id=62931&r=notwrong Not enough info: https://bugs.php.net/fix.php?id=62931&r=notenoughinfo Submitted twice: https://bugs.php.net/fix.php?id=62931&r=submittedtwice register_globals: https://bugs.php.net/fix.php?id=62931&r=globals PHP 4 support discontinued: https://bugs.php.net/fix.php?id=62931&r=php4 Daylight Savings:https://bugs.php.net/fix.php?id=62931&r=dst IIS Stability: https://bugs.php.net/fix.php?id=62931&r=isapi Install GNU Sed: https://bugs.php.net/fix.php?id=62931&r=gnused Floating point limitations: https://bugs.php.net/fix.php?id=62931&r=float No Zend Extensions: https://bugs.php.net/fix.php?id=62931&r=nozend MySQL Configuration Error: https://bugs.php.net/fix.php?id=62931&r=mysqlcfg
#48227 [NEW]: NumberFormatter::format leaks memory
From: fel...@php.net Operating system: PHP version: 5.3.0RC2 PHP Bug Type: I18N and L10N related Bug description: NumberFormatter::format leaks memory Description: See below. Reproduce code: --- format('')); Expected result: string(1) "0" Actual result: -- string(1) "0" [Sun May 10 17:04:45 2009] Script: '../test.php' /home/felipe/dev/php5/Zend/zend_vm_execute.h(1721) : Freeing 0x09920A4C (1 bytes), script=../test.php /home/felipe/dev/php5/Zend/zend_variables.c(120) : Actual location (location was relayed) === Total 1 memory leaks detected === -- Edit bug report at http://bugs.php.net/?id=48227&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=48227&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=48227&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=48227&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=48227&r=fixedcvs Fixed in CVS and need be documented: http://bugs.php.net/fix.php?id=48227&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=48227&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=48227&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=48227&r=needscript Try newer version: http://bugs.php.net/fix.php?id=48227&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=48227&r=support Expected behavior: http://bugs.php.net/fix.php?id=48227&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=48227&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=48227&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=48227&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=48227&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=48227&r=dst IIS Stability: http://bugs.php.net/fix.php?id=48227&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=48227&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=48227&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=48227&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=48227&r=mysqlcfg
#48500 [NEW]: mysqli::init() memory leaks
From: fel...@php.net Operating system: Linux PHP version: 5.2CVS-2009-06-08 (CVS) PHP Bug Type: MySQLi related Bug description: mysqli::init() memory leaks Description: See below: Reproduce code: --- $x = new mysqli; $x->init();$x->init(); Expected result: No mem. leaks Actual result: -- [Mon Jun 8 16:59:13 2009] Script: '../bug.php' /home/felipe/dev/php5_2/ext/mysqli/mysqli_api.c(1102) : Freeing 0x09CAA2A0 (16 bytes), script=../bug.php /home/felipe/dev/php5_2/Zend/zend_alloc.c(2391) : Actual location (location was relayed) [Mon Jun 8 16:59:13 2009] Script: '../bug.php' /home/felipe/dev/php5_2/ext/mysqli/mysqli_api.c(1109) : Freeing 0x09CAB160 (12 bytes), script=../bug.php /home/felipe/dev/php5_2/Zend/zend_alloc.c(2391) : Actual location (location was relayed) === Total 2 memory leaks detected === -- Edit bug report at http://bugs.php.net/?id=48500&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=48500&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=48500&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=48500&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=48500&r=fixedcvs Fixed in CVS and need be documented: http://bugs.php.net/fix.php?id=48500&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=48500&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=48500&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=48500&r=needscript Try newer version: http://bugs.php.net/fix.php?id=48500&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=48500&r=support Expected behavior: http://bugs.php.net/fix.php?id=48500&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=48500&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=48500&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=48500&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=48500&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=48500&r=dst IIS Stability: http://bugs.php.net/fix.php?id=48500&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=48500&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=48500&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=48500&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=48500&r=mysqlcfg
#48559 [NEW]: Object comparison using unserialized DateTime object causes segfault
From: fel...@php.net Operating system: Linux PHP version: 5.2CVS-2009-06-15 (CVS) PHP Bug Type: Date/time related Bug description: Object comparison using unserialized DateTime object causes segfault Description: This issue just occurs on 5.2. See the code below. Reproduce code: --- time->sse_uptodate) { (gdb) bt #0 0x080bed7a in date_object_compare_date (d1=0xa7a5308, d2=0xa7a5288, tsrm_ls=0xa5802a8) at /home/felipe/dev/php5_2/ext/date/php_date.c:1581 #1 0x084e3773 in compare_function (result=0xbfc93f10, op1=0xa7a5308, op2=0xa7a5288, tsrm_ls=0xa5802a8) at /home/felipe/dev/php5_2/Zend/zend_operators.c:1416 #2 0x084e404c in is_equal_function (result=0xbfc93f10, op1=0xa7a5308, op2=0xa7a5288, tsrm_ls=0xa5802a8) at /home/felipe/dev/php5_2/Zend/zend_operators.c:1547 #3 0x0853b9f1 in ZEND_IS_EQUAL_SPEC_VAR_VAR_HANDLER (execute_data=0xbfc93f44, tsrm_ls=0xa5802a8) at /home/felipe/dev/php5_2/Zend/zend_vm_execute.h:11516 #4 0x085126e4 in execute (op_array=0xa7a5a10, tsrm_ls=0xa5802a8) at /home/felipe/dev/php5_2/Zend/zend_vm_execute.h:92 #5 0x084da6aa in zend_eval_string (str=0xbfc957dc "unserialize(serialize(new datetime())) == new datetime;", retval_ptr=0x0, string_name=0x87fb6dc "Command line code", tsrm_ls=0xa5802a8) at /home/felipe/dev/php5_2/Zend/zend_execute_API.c:1214 #6 0x084da8e2 in zend_eval_string_ex (str=0xbfc957dc "unserialize(serialize(new datetime())) == new datetime;", retval_ptr=0x0, string_name=0x87fb6dc "Command line code", handle_exceptions=1, tsrm_ls=0xa5802a8) at /home/felipe/dev/php5_2/Zend/zend_execute_API.c:1248 #7 0x08573484 in main (argc=3, argv=0xbfc94314) at /home/felipe/dev/php5_2/sapi/cli/php_cli.c:1201 -- Edit bug report at http://bugs.php.net/?id=48559&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=48559&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=48559&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=48559&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=48559&r=fixedcvs Fixed in CVS and need be documented: http://bugs.php.net/fix.php?id=48559&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=48559&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=48559&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=48559&r=needscript Try newer version: http://bugs.php.net/fix.php?id=48559&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=48559&r=support Expected behavior: http://bugs.php.net/fix.php?id=48559&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=48559&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=48559&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=48559&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=48559&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=48559&r=dst IIS Stability: http://bugs.php.net/fix.php?id=48559&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=48559&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=48559&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=48559&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=48559&r=mysqlcfg
#48562 [NEW]: Object recursion causes segfault when used in wddx_serialize_vars()
From: fel...@php.net Operating system: Linux PHP version: 5.2CVS-2009-06-15 (CVS) PHP Bug Type: WDDX related Bug description: Object recursion causes segfault when used in wddx_serialize_vars() Description: See below. Reproduce code: --- $a[] = new stdclass; $a[] = &$a; wddx_serialize_vars($a); Expected result: No SIGSEGV. Actual result: -- #0 0xb7482e60 in pthread_getspecific () from /lib/i686/cmov/libpthread.so.0 #1 0x08553158 in ts_resource_ex (id=0, th_id=0x0) at /home/felipe/dev/php5/TSRM/TSRM.c:329 #2 0x08524f9b in php_wddx_add_var (packet=0xa383c84, name_var=0xa382b94) at /home/felipe/dev/php5/ext/wddx/wddx.c:696 #3 0x085250f8 in php_wddx_add_var (packet=0xa383c84, name_var=0xa3833ec) at /home/felipe/dev/php5/ext/wddx/wddx.c:712 #4 0x085250f8 in php_wddx_add_var (packet=0xa383c84, name_var=0xa3833ec) at /home/felipe/dev/php5/ext/wddx/wddx.c:712 #5 0x085250f8 in php_wddx_add_var (packet=0xa383c84, name_var=0xa3833ec) at /home/felipe/dev/php5/ext/wddx/wddx.c:712 #6 0x085250f8 in php_wddx_add_var (packet=0xa383c84, name_var=0xa3833ec) at /home/felipe/dev/php5/ext/wddx/wddx.c:712 #7 0x085250f8 in php_wddx_add_var (packet=0xa383c84, name_var=0xa3833ec) at /home/felipe/dev/php5/ext/wddx/wddx.c:712 #8 0x085250f8 in php_wddx_add_var (packet=0xa383c84, name_var=0xa3833ec) at /home/felipe/dev/php5/ext/wddx/wddx.c:712 #9 0x085250f8 in php_wddx_add_var (packet=0xa383c84, name_var=0xa3833ec) at /home/felipe/dev/php5/ext/wddx/wddx.c:712 ... -- Edit bug report at http://bugs.php.net/?id=48562&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=48562&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=48562&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=48562&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=48562&r=fixedcvs Fixed in CVS and need be documented: http://bugs.php.net/fix.php?id=48562&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=48562&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=48562&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=48562&r=needscript Try newer version: http://bugs.php.net/fix.php?id=48562&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=48562&r=support Expected behavior: http://bugs.php.net/fix.php?id=48562&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=48562&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=48562&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=48562&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=48562&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=48562&r=dst IIS Stability: http://bugs.php.net/fix.php?id=48562&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=48562&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=48562&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=48562&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=48562&r=mysqlcfg
#48678 [NEW]: DateInterval segfaults when unserialising
From: fel...@php.net Operating system: Linux PHP version: 5.3CVS-2009-06-24 (CVS) PHP Bug Type: Date/time related Bug description: DateInterval segfaults when unserialising Description: See below: Reproduce code: --- $x = new dateinterval("P3Y6M4DT12H30M5S"); unserialize(serialize($x)); Expected result: No SIGSEGV. Actual result: -- Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0xb7b786c0 (LWP 29877)] 0x0806919f in date_object_get_properties_interval (object=0x8f35344, tsrm_ls=0x8df3050) at /home/felipe/dev/php5/ext/date/php_date.c:2221 2221PHP_DATE_INTERVAL_ADD_PROPERTY("y", y); (gdb) bt #0 0x0806919f in date_object_get_properties_interval (object=0x8f35344, tsrm_ls=0x8df3050) at /home/felipe/dev/php5/ext/date/php_date.c:2221 #1 0x0834d127 in object_common2 (rval=0xbf906a94, p=0xbf906a78, max=0x8f35156 "", var_hash=0xbf906a70, tsrm_ls=0x8df3050, elements=8) at ext/standard/var_unserializer.re:369 #2 0x0834b4fe in php_var_unserialize (rval=0xbf906a94, p=0xbf906a78, max=0x8f35156 "", var_hash=0xbf906a70, tsrm_ls=0x8df3050) at ext/standard/var_unserializer.re:713 #3 0x08339617 in zif_unserialize (ht=1, return_value=0x8f35344, return_value_ptr=0x0, this_ptr=0x0, return_value_used=0, tsrm_ls=0x8df3050) at /home/felipe/dev/php5/ext/standard/var.c:868 #4 0x08436a24 in zend_do_fcall_common_helper_SPEC (execute_data=0x8f62a94, tsrm_ls=0x8df3050) at /home/felipe/dev/php5/Zend/zend_vm_execute.h:313 #5 0x0843cb8b in ZEND_DO_FCALL_SPEC_CONST_HANDLER (execute_data=0x8f62a94, tsrm_ls=0x8df3050) at /home/felipe/dev/php5/Zend/zend_vm_execute.h:1601 #6 0x084357eb in execute (op_array=0x8f33fc8, tsrm_ls=0x8df3050) at /home/felipe/dev/php5/Zend/zend_vm_execute.h:104 #7 0x083f4ef4 in zend_eval_stringl (str=0xbf9087d3 "$x = new dateinterval(\"P3Y6M4DT12H30M5S\"); unserialize(serialize($x));", str_len=70, retval_ptr=0x0, string_name=0x87a08b4 "Command line code", tsrm_ls=0x8df3050) at /home/felipe/dev/php5/Zend/zend_execute_API.c:1159 #8 0x083f517b in zend_eval_stringl_ex (str=0xbf9087d3 "$x = new dateinterval(\"P3Y6M4DT12H30M5S\"); unserialize(serialize($x));", str_len=70, retval_ptr=0x0, string_name=0x87a08b4 "Command line code", handle_exceptions=1, tsrm_ls=0x8df3050) at /home/felipe/dev/php5/Zend/zend_execute_API.c:1200 #9 0x083f522f in zend_eval_string_ex (str=0xbf9087d3 "$x = new dateinterval(\"P3Y6M4DT12H30M5S\"); unserialize(serialize($x));", retval_ptr=0x0, string_name=0x87a08b4 "Command line code", handle_exceptions=1, tsrm_ls=0x8df3050) at /home/felipe/dev/php5/Zend/zend_execute_API.c:1211 #10 0x084e6ca2 in main (argc=3, argv=0xbf906f84) at /home/felipe/dev/php5/sapi/cli/php_cli.c:1227 -- Edit bug report at http://bugs.php.net/?id=48678&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=48678&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=48678&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=48678&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=48678&r=fixedcvs Fixed in CVS and need be documented: http://bugs.php.net/fix.php?id=48678&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=48678&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=48678&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=48678&r=needscript Try newer version: http://bugs.php.net/fix.php?id=48678&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=48678&r=support Expected behavior: http://bugs.php.net/fix.php?id=48678&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=48678&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=48678&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=48678&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=48678&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=48678&r=dst IIS Stability: http://bugs.php.net/fix.php?id=48678&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=48678&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=48678&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=48678&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=48678&r=mysqlcfg
#48679 [NEW]: SQLiteUnbuffered::count() SIGSEGV
From: fel...@php.net Operating system: Linux PHP version: 5.3CVS-2009-06-24 (CVS) PHP Bug Type: SQLite related Bug description: SQLiteUnbuffered::count() SIGSEGV Description: See below: Reproduce code: --- $x = new sqliteunbuffered; count($x); Expected result: No SIGSEGV. Actual result: -- Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0xb7c696c0 (LWP 30884)] 0x082783ca in sqlite_count_elements (object=0x9a31940, count=0x9a325e0, tsrm_ls=0x98f1050) at /home/felipe/dev/php5/ext/sqlite/sqlite.c:2822 2822if (obj->u.res->buffered) { (gdb) bt #0 0x082783ca in sqlite_count_elements (object=0x9a31940, count=0x9a325e0, tsrm_ls=0x98f1050) at /home/felipe/dev/php5/ext/sqlite/sqlite.c:2822 #1 0x082ca6ab in zif_count (ht=1, return_value=0x9a325e0, return_value_ptr=0x0, this_ptr=0x0, return_value_used=0, tsrm_ls=0x98f1050) at /home/felipe/dev/php5/ext/standard/array.c:323 #2 0x08436a24 in zend_do_fcall_common_helper_SPEC (execute_data=0x9a60a94, tsrm_ls=0x98f1050) at /home/felipe/dev/php5/Zend/zend_vm_execute.h:313 #3 0x0843cb8b in ZEND_DO_FCALL_SPEC_CONST_HANDLER (execute_data=0x9a60a94, tsrm_ls=0x98f1050) at /home/felipe/dev/php5/Zend/zend_vm_execute.h:1601 #4 0x084357eb in execute (op_array=0x9a31fc8, tsrm_ls=0x98f1050) at /home/felipe/dev/php5/Zend/zend_vm_execute.h:104 #5 0x083f4ef4 in zend_eval_stringl (str=0xbfef97f4 "$x = new sqliteunbuffered; count($x);", str_len=37, retval_ptr=0x0, string_name=0x87a08b4 "Command line code", tsrm_ls=0x98f1050) at /home/felipe/dev/php5/Zend/zend_execute_API.c:1159 #6 0x083f517b in zend_eval_stringl_ex (str=0xbfef97f4 "$x = new sqliteunbuffered; count($x);", str_len=37, retval_ptr=0x0, string_name=0x87a08b4 "Command line code", handle_exceptions=1, tsrm_ls=0x98f1050) at /home/felipe/dev/php5/Zend/zend_execute_API.c:1200 #7 0x083f522f in zend_eval_string_ex (str=0xbfef97f4 "$x = new sqliteunbuffered; count($x);", retval_ptr=0x0, string_name=0x87a08b4 "Command line code", handle_exceptions=1, tsrm_ls=0x98f1050) at /home/felipe/dev/php5/Zend/zend_execute_API.c:1211 #8 0x084e6ca2 in main (argc=3, argv=0xbfef7d94) at /home/felipe/dev/php5/sapi/cli/php_cli.c:1227 -- Edit bug report at http://bugs.php.net/?id=48679&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=48679&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=48679&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=48679&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=48679&r=fixedcvs Fixed in CVS and need be documented: http://bugs.php.net/fix.php?id=48679&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=48679&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=48679&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=48679&r=needscript Try newer version: http://bugs.php.net/fix.php?id=48679&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=48679&r=support Expected behavior: http://bugs.php.net/fix.php?id=48679&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=48679&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=48679&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=48679&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=48679&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=48679&r=dst IIS Stability: http://bugs.php.net/fix.php?id=48679&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=48679&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=48679&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=48679&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=48679&r=mysqlcfg
#48690 [NEW]: Memory leaks when using cyclic references
From: fel...@php.net Operating system: Linux PHP version: 5.2CVS-2009-06-25 (CVS) PHP Bug Type: Scripting Engine problem Bug description: Memory leaks when using cyclic references Description: This issue is PHP5_2 only. See below. Reproduce code: --- $x = array(); $x[0] = &$x; Expected result: No memleak. Actual result: -- [Thu Jun 25 09:48:53 2009] Script: '-' /home/felipe/dev/php5_2/Zend/zend_execute.c(833) : Freeing 0x0A8388E8 (16 bytes), script=- [Thu Jun 25 09:48:53 2009] Script: '-' /home/felipe/dev/php5_2/Zend/zend_vm_execute.h(18351) : Freeing 0x0A83933C (44 bytes), script=- /home/felipe/dev/php5_2/Zend/zend_API.c(827) : Actual location (location was relayed) Last leak repeated 1 time [Thu Jun 25 09:48:53 2009] Script: '-' /home/felipe/dev/php5_2/Zend/zend_execute.c(1001) : Freeing 0x0A839440 (35 bytes), script=- /home/felipe/dev/php5_2/Zend/zend_hash.c(388) : Actual location (location was relayed) === Total 4 memory leaks detected === -- Edit bug report at http://bugs.php.net/?id=48690&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=48690&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=48690&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=48690&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=48690&r=fixedcvs Fixed in CVS and need be documented: http://bugs.php.net/fix.php?id=48690&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=48690&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=48690&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=48690&r=needscript Try newer version: http://bugs.php.net/fix.php?id=48690&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=48690&r=support Expected behavior: http://bugs.php.net/fix.php?id=48690&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=48690&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=48690&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=48690&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=48690&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=48690&r=dst IIS Stability: http://bugs.php.net/fix.php?id=48690&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=48690&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=48690&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=48690&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=48690&r=mysqlcfg
#48696 [NEW]: ldap_read() segfaults with invalid parameters
From: fel...@php.net Operating system: Linux PHP version: 5.3CVS-2009-06-25 (CVS) PHP Bug Type: LDAP related Bug description: ldap_read() segfaults with invalid parameters Description: See below. Reproduce code: --- ldap_read(1,1,1); Expected result: Warning: ldap_read(): supplied argument is not a valid ldap link resource in Command line code on line 1 Actual result: -- Warning: ldap_read(): supplied argument is not a valid ldap link resource in Command line code on line 1 Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0xb75756c0 (LWP 22084)] 0x0820b9ac in php_ldap_do_search (ht=3, return_value=0xa333094, return_value_ptr=0x0, this_ptr=0x0, return_value_used=0, tsrm_ls=0xa19a070, scope=0) at /home/felipe/dev/php5/ext/ldap/ldap.c:810 810 php_set_opts(ld->link, old_ldap_sizelimit, old_ldap_timelimit, old_ldap_deref, &ldap_sizelimit, &ldap_timelimit, &ldap_deref); (gdb) bt #0 0x0820b9ac in php_ldap_do_search (ht=3, return_value=0xa333094, return_value_ptr=0x0, this_ptr=0x0, return_value_used=0, tsrm_ls=0xa19a070, scope=0) at /home/felipe/dev/php5/ext/ldap/ldap.c:810 #1 0x0820baab in zif_ldap_read (ht=3, return_value=0xa333094, return_value_ptr=0x0, this_ptr=0x0, return_value_used=0, tsrm_ls=0xa19a070) at /home/felipe/dev/php5/ext/ldap/ldap.c:824 #2 0x084a2328 in zend_do_fcall_common_helper_SPEC (execute_data=0xa361a54, tsrm_ls=0xa19a070) at /home/felipe/dev/php5/Zend/zend_vm_execute.h:313 #3 0x084a848f in ZEND_DO_FCALL_SPEC_CONST_HANDLER (execute_data=0xa361a54, tsrm_ls=0xa19a070) at /home/felipe/dev/php5/Zend/zend_vm_execute.h:1601 #4 0x084a10ef in execute (op_array=0xa332f90, tsrm_ls=0xa19a070) at /home/felipe/dev/php5/Zend/zend_vm_execute.h:104 #5 0x084607f8 in zend_eval_stringl (str=0xbfc22807 "ldap_read(1,1,1);", str_len=17, retval_ptr=0x0, string_name=0x883dd94 "Command line code", tsrm_ls=0xa19a070) at /home/felipe/dev/php5/Zend/zend_execute_API.c:1159 #6 0x08460a7f in zend_eval_stringl_ex (str=0xbfc22807 "ldap_read(1,1,1);", str_len=17, retval_ptr=0x0, string_name=0x883dd94 "Command line code", handle_exceptions=1, tsrm_ls=0xa19a070) at /home/felipe/dev/php5/Zend/zend_execute_API.c:1200 #7 0x08460b33 in zend_eval_string_ex (str=0xbfc22807 "ldap_read(1,1,1);", retval_ptr=0x0, string_name=0x883dd94 "Command line code", handle_exceptions=1, tsrm_ls=0xa19a070) at /home/felipe/dev/php5/Zend/zend_execute_API.c:1211 #8 0x085525a6 in main (argc=3, argv=0xbfc21ad4) at /home/felipe/dev/php5/sapi/cli/php_cli.c:1227 -- Edit bug report at http://bugs.php.net/?id=48696&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=48696&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=48696&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=48696&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=48696&r=fixedcvs Fixed in CVS and need be documented: http://bugs.php.net/fix.php?id=48696&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=48696&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=48696&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=48696&r=needscript Try newer version: http://bugs.php.net/fix.php?id=48696&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=48696&r=support Expected behavior: http://bugs.php.net/fix.php?id=48696&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=48696&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=48696&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=48696&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=48696&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=48696&r=dst IIS Stability: http://bugs.php.net/fix.php?id=48696&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=48696&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=48696&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=48696&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=48696&r=mysqlcfg
#48774 [NEW]: SIGSEGVs when using curl_copy_handle()
From: fel...@php.net Operating system: Linux PHP version: 5.3CVS-2009-07-02 (CVS) PHP Bug Type: cURL related Bug description: SIGSEGVs when using curl_copy_handle() Description: See below. Reproduce code: --- 1º http://localhost/";; $ch = curl_init(); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, array("Hello" => "World")); curl_setopt($ch, CURLOPT_URL, $url); $copy = curl_copy_handle($ch); curl_close($ch); 2º http://localhost/";; $ch = curl_init(); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, array("Hello" => "World")); curl_setopt($ch, CURLOPT_URL, $url); $copy = curl_copy_handle($ch); curl_close($ch); curl_exec($copy); curl_close($copy); Expected result: No SIGSEGV. Actual result: -- 1º *** glibc detected *** sapi/cli/php: double free or corruption (fasttop): 0x0a663260 *** === Backtrace: = /lib/i686/cmov/libc.so.6[0xb65a81d4] /lib/i686/cmov/libc.so.6(cfree+0x96)[0xb65aa186] /usr/local/lib/libcurl.so.4(curl_formfree+0x8a)[0xb74533ca] sapi/cli/php[0x819c1af] sapi/cli/php(zend_llist_destroy+0x33)[0x8612f05] sapi/cli/php(zend_llist_clean+0x11)[0x8612f71] sapi/cli/php[0x81a0a40] sapi/cli/php[0x81a0d81] sapi/cli/php[0x86321e4] sapi/cli/php(zend_hash_del_key_or_index+0x192)[0x862f5d9] sapi/cli/php(_zend_list_delete+0xa0)[0x8631df4] sapi/cli/php(_zval_dtor_func+0x198)[0x861cb28] sapi/cli/php[0x860cfcc] sapi/cli/php(_zval_ptr_dtor+0xb8)[0x860d3b1] sapi/cli/php(_zval_ptr_dtor_wrapper+0x21)[0x861cf08] sapi/cli/php[0x862fa96] sapi/cli/php(zend_hash_graceful_reverse_destroy+0x3e)[0x862fc1a] sapi/cli/php[0x860c5bb] sapi/cli/php[0x861f79a] sapi/cli/php(php_request_shutdown+0x682)[0x8590ac0] sapi/cli/php[0x87035c7] /lib/i686/cmov/libc.so.6(__libc_start_main+0xe5)[0xb654f775] sapi/cli/php[0x8078a91] 2º Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0xb631a6f0 (LWP 4050)] 0xb74ef368 in curl_formfree () from /usr/local/lib/libcurl.so.4 Current language: auto; currently asm (gdb) bt #0 0xb74ef368 in curl_formfree () from /usr/local/lib/libcurl.so.4 #1 0xb74ef37c in curl_formfree () from /usr/local/lib/libcurl.so.4 #2 0x0819c1af in curl_free_post (post=0xaa1741c) at /home/felipe/dev/php5/ext/curl/interface.c:1246 #3 0x08612f05 in zend_llist_destroy (l=0xaa17230) at /home/felipe/dev/php5/Zend/zend_llist.c:114 #4 0x08612f71 in zend_llist_clean (l=0xaa17230) at /home/felipe/dev/php5/Zend/zend_llist.c:126 #5 0x081a0a40 in _php_curl_close_ex (ch=0xaa17128, tsrm_ls=0xa7aa4b8) at /home/felipe/dev/php5/ext/curl/interface.c:2302 #6 0x081a0d81 in _php_curl_close (rsrc=0xaa174d8, tsrm_ls=0xa7aa4b8) at /home/felipe/dev/php5/ext/curl/interface.c:2343 #7 0x086321e4 in list_entry_destructor (ptr=0xaa174d8) at /home/felipe/dev/php5/Zend/zend_list.c:184 #8 0x0862f5d9 in zend_hash_del_key_or_index (ht=0xa7ac7d4, arKey=0x0, nKeyLength=0, h=5, flag=1) at /home/felipe/dev/php5/Zend/zend_hash.c:497 #9 0x08631df4 in _zend_list_delete (id=5, tsrm_ls=0xa7aa4b8) at /home/felipe/dev/php5/Zend/zend_list.c:58 #10 0x081a09b5 in zif_curl_close (ht=1, return_value=0xaa16fe8, return_value_ptr=0x0, this_ptr=0x0, return_value_used=0, tsrm_ls=0xa7aa4b8) at /home/felipe/dev/php5/ext/curl/interface.c:2279 -- Edit bug report at http://bugs.php.net/?id=48774&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=48774&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=48774&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=48774&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=48774&r=fixedcvs Fixed in CVS and need be documented: http://bugs.php.net/fix.php?id=48774&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=48774&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=48774&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=48774&r=needscript Try newer version: http://bugs.php.net/fix.php?id=48774&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=48774&r=support Expected behavior: http://bugs.php.net/fix.php?id=48774&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=48774&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=48774&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=48774&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=48774&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=48774&r=dst IIS Stability:
#48808 [NEW]: Wrong e-mail format is accept with FILTER_VALIDATE_EMAIL
From: fel...@php.net Operating system: Linux PHP version: 5.2CVS-2009-07-05 (CVS) PHP Bug Type: Filter related Bug description: Wrong e-mail format is accept with FILTER_VALIDATE_EMAIL Description: See below. Tested with 5.2 and 5.3CVS. Reproduce code: --- var_dump(filter_var("-...@a.-", FILTER_VALIDATE_EMAIL)); Expected result: bool(false) Actual result: -- string(5) "-...@a.-" -- Edit bug report at http://bugs.php.net/?id=48808&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=48808&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=48808&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=48808&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=48808&r=fixedcvs Fixed in CVS and need be documented: http://bugs.php.net/fix.php?id=48808&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=48808&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=48808&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=48808&r=needscript Try newer version: http://bugs.php.net/fix.php?id=48808&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=48808&r=support Expected behavior: http://bugs.php.net/fix.php?id=48808&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=48808&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=48808&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=48808&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=48808&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=48808&r=dst IIS Stability: http://bugs.php.net/fix.php?id=48808&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=48808&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=48808&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=48808&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=48808&r=mysqlcfg
#48980 [NEW]: Crash when compiling with pdo_firebird
From: fel...@php.net Operating system: Linux PHP version: 5.3SVN-2009-07-19 (SVN) PHP Bug Type: Reproducible crash Bug description: Crash when compiling with pdo_firebird Description: Compiling with './configure --with-pdo-firebird' we got a segfault when starting php. Reproduce code: --- $ sapi/cli/php Expected result: No SIGSEGV. Actual result: -- Starting program: /home/felipe/dev/php5/sapi/cli/php [Thread debugging using libthread_db enabled] [New Thread 0xb7adc8e0 (LWP 9461)] Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0xb7adc8e0 (LWP 9461)] 0x08415dfe in zend_declare_class_constant_long (ce=0x0, name=0x8737b6e "FB_ATTR_DATE_FORMAT", name_length=19, value=1000, tsrm_ls=0xa2d4050) at /home/felipe/dev/php5/Zend/zend_API.c:3229 3229if (ce->type & ZEND_INTERNAL_CLASS) { (gdb) bt #0 0x08415dfe in zend_declare_class_constant_long (ce=0x0, name=0x8737b6e "FB_ATTR_DATE_FORMAT", name_length=19, value=1000, tsrm_ls=0xa2d4050) at /home/felipe/dev/php5/Zend/zend_API.c:3229 #1 0x081dabb0 in zm_startup_pdo_firebird (type=1, module_number=14, tsrm_ls=0xa2d4050) at /home/felipe/dev/php5/ext/pdo_firebird/pdo_firebird.c:58 #2 0x084106df in zend_startup_module_ex (module=0xa2e5ba8, tsrm_ls=0xa2d4050) at /home/felipe/dev/php5/Zend/zend_API.c:1613 #3 0x08419a77 in zend_hash_apply (ht=0x87c2e40, apply_func=0x84104fd , tsrm_ls=0xa2d4050) at /home/felipe/dev/php5/Zend/zend_hash.c:673 #4 0x08410896 in zend_startup_modules (tsrm_ls=0xa2d4050) at /home/felipe/dev/php5/Zend/zend_API.c:1662 #5 0x0837c2cd in php_module_startup (sf=0x87aee00, additional_modules=0x0, num_additional_modules=0) at /home/felipe/dev/php5/main/main.c:2007 #6 0x084eaf4f in php_cli_startup (sapi_module=0x87aee00) at /home/felipe/dev/php5/sapi/cli/php_cli.c:399 #7 0x084ebd23 in main (argc=1, argv=0xbfde7d84) at /home/felipe/dev/php5/sapi/cli/php_cli.c:771 -- Edit bug report at http://bugs.php.net/?id=48980&edit=1 -- Try a snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=48980&r=trysnapshot52 Try a snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=48980&r=trysnapshot53 Try a snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=48980&r=trysnapshot60 Fixed in SVN: http://bugs.php.net/fix.php?id=48980&r=fixed Fixed in SVN and need be documented: http://bugs.php.net/fix.php?id=48980&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=48980&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=48980&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=48980&r=needscript Try newer version: http://bugs.php.net/fix.php?id=48980&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=48980&r=support Expected behavior: http://bugs.php.net/fix.php?id=48980&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=48980&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=48980&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=48980&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=48980&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=48980&r=dst IIS Stability: http://bugs.php.net/fix.php?id=48980&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=48980&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=48980&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=48980&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=48980&r=mysqlcfg
#50152 [NEW]: ReflectionClass::hasPropertys hehaves like isset() not property_exists
From: fel...@php.net Operating system: Linux PHP version: 5.3SVN-2009-11-11 (SVN) PHP Bug Type: Reflection related Bug description: ReflectionClass::hasPropertys hehaves like isset() not property_exists Description: This change looks to be introduced accidentaly in HEAD, and was MFHd by me times ago. the hasProperty() is currently using the __isset magic method, this doesn't look right from a reflection perspective. It must behaves like property_exists() that doesn't uses the magic stuff. Reproduce code: --- hasProperty('b')); Expected result: bool(false) Actual result: -- string(1) "b" bool(true) -- Edit bug report at http://bugs.php.net/?id=50152&edit=1 -- Try a snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=50152&r=trysnapshot52 Try a snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=50152&r=trysnapshot53 Try a snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=50152&r=trysnapshot60 Fixed in SVN: http://bugs.php.net/fix.php?id=50152&r=fixed Fixed in SVN and need be documented: http://bugs.php.net/fix.php?id=50152&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=50152&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=50152&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=50152&r=needscript Try newer version: http://bugs.php.net/fix.php?id=50152&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=50152&r=support Expected behavior: http://bugs.php.net/fix.php?id=50152&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=50152&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=50152&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=50152&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=50152&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=50152&r=dst IIS Stability: http://bugs.php.net/fix.php?id=50152&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=50152&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=50152&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=50152&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=50152&r=mysqlcfg
#47398 [NEW]: PDO_Firebird doesn't implements quoter correctly
From: fel...@php.net Operating system: PHP version: 5.3CVS-2009-02-15 (CVS) PHP Bug Type: PDO related Bug description: PDO_Firebird doesn't implements quoter correctly Description: PDO_firebird doesn't add the initial and final quotes as other drivers and is not escaping quotes. Because this behavior currently pdo_033.phpt is failing. Reproduce code: --- var_dump($db->quote(' !"#$%&\'()*+,-./0123456789:;<=>?...@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~')); var_dump($db->quote('')); Expected result: string(98) "' !"#$%&''()*+,-./0123456789:;<=>?...@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~'" string(2) "''" Actual result: -- string(96) " !"#$%&'()*+,-./0123456789:;<=>?...@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~" bool(false) -- Edit bug report at http://bugs.php.net/?id=47398&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=47398&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=47398&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=47398&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=47398&r=fixedcvs Fixed in CVS and need be documented: http://bugs.php.net/fix.php?id=47398&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=47398&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=47398&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=47398&r=needscript Try newer version: http://bugs.php.net/fix.php?id=47398&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=47398&r=support Expected behavior: http://bugs.php.net/fix.php?id=47398&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=47398&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=47398&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=47398&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=47398&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=47398&r=dst IIS Stability: http://bugs.php.net/fix.php?id=47398&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=47398&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=47398&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=47398&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=47398&r=mysqlcfg
#47414 [NEW]: PDO_Firebird memory leaks when using bindColumn()
From: fel...@php.net Operating system: PHP version: 5.3CVS-2009-02-16 (CVS) PHP Bug Type: PDO related Bug description: PDO_Firebird memory leaks when using bindColumn() Description: See below. Reproduce code: --- setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING); @$db->exec('drop table test'); $db->exec('CREATE TABLE test(idx int NOT NULL PRIMARY KEY, txt VARCHAR(20))'); $db->exec('INSERT INTO test VALUES(0, \'String0\')'); $stmt = $db->prepare('SELECT idx, txt FROM test ORDER by idx'); $idx = $txt = 0; $stmt->bindColumn('IDX', $idx); $stmt->bindColumn('TXT', $txt); $stmt->execute(); while($stmt->fetch(PDO::FETCH_BOUND)) { var_dump(array($idx=>$txt)); } Actual result: -- array(1) { [0]=> string(7) "String0" } [Mon Feb 16 19:30:09 2009] Script: '../test.php' /home/felipe/dev/php5/main/spprintf.c(775) : Freeing 0x090E8A64 (79 bytes), script=../test.php Last leak repeated 1 time === Total 2 memory leaks detected === -- Edit bug report at http://bugs.php.net/?id=47414&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=47414&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=47414&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=47414&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=47414&r=fixedcvs Fixed in CVS and need be documented: http://bugs.php.net/fix.php?id=47414&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=47414&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=47414&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=47414&r=needscript Try newer version: http://bugs.php.net/fix.php?id=47414&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=47414&r=support Expected behavior: http://bugs.php.net/fix.php?id=47414&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=47414&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=47414&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=47414&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=47414&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=47414&r=dst IIS Stability: http://bugs.php.net/fix.php?id=47414&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=47414&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=47414&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=47414&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=47414&r=mysqlcfg
#47415 [NEW]: PDO_Firebird segfaults when passing lowercased column name to bindColumn()
From: fel...@php.net Operating system: PHP version: 5.3CVS-2009-02-16 (CVS) PHP Bug Type: PDO related Bug description: PDO_Firebird segfaults when passing lowercased column name to bindColumn() Description: The problem just happens when using lowercased column name in boundColumn calls. Using uppercased occurs memleaks though. (probably related to #47414) Reproduce code: --- setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING); @$db->exec('drop table test'); $db->exec('CREATE TABLE test(idx int NOT NULL PRIMARY KEY, txt VARCHAR(20))'); $db->exec('INSERT INTO test VALUES(0, \'String0\')'); $stmt = $db->prepare('SELECT idx, txt FROM test ORDER by idx'); $idx = $txt = 0; $stmt->bindColumn('idx', $idx); $stmt->bindColumn('txt', $txt); $stmt->execute(); $stmt->fetch(PDO::FETCH_BOUND); Actual result: -- Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0xb79ee8e0 (LWP 5961)] 0x081d3466 in firebird_stmt_get_col (stmt=0x8c3ac5c, colno=-1, ptr=0xbf7fb76c, len=0xbf7fb768, caller_frees=0xbf7fb764, tsrm_ls=0x8af8050) at /home/felipe/dev/php5/ext/pdo_firebird/firebird_statement.c:273 273 if (*var->sqlind == -1) { (gdb) bt #0 0x081d3466 in firebird_stmt_get_col (stmt=0x8c3ac5c, colno=-1, ptr=0xbf7fb76c, len=0xbf7fb768, caller_frees=0xbf7fb764, tsrm_ls=0x8af8050) at /home/felipe/dev/php5/ext/pdo_firebird/firebird_statement.c:273 #1 0x081d47d9 in firebird_stmt_param_hook (stmt=0x8c3ac5c, param=0x8c3b3d4, event_type=PDO_PARAM_EVT_FETCH_POST, tsrm_ls=0x8af8050) at /home/felipe/dev/php5/ext/pdo_firebird/firebird_statement.c:555 #2 0x081c766e in dispatch_param_event (stmt=0x8c3ac5c, event_type=PDO_PARAM_EVT_FETCH_POST, tsrm_ls=0x8af8050) at /home/felipe/dev/php5/ext/pdo/pdo_stmt.c:184 #3 0x081c88d2 in do_fetch_common (stmt=0x8c3ac5c, ori=PDO_FETCH_ORI_NEXT, offset=0, do_bind=1, tsrm_ls=0x8af8050) at /home/felipe/dev/php5/ext/pdo/pdo_stmt.c:705 #4 0x081ca077 in do_fetch (stmt=0x8c3ac5c, do_bind=1, return_value=0x8c3b238, how=PDO_FETCH_BOUND, ori=PDO_FETCH_ORI_NEXT, offset=0, return_all=0x0, tsrm_ls=0x8af8050) at /home/felipe/dev/php5/ext/pdo/pdo_stmt.c:934 #5 0x081cba40 in zim_PDOStatement_fetch (ht=1, return_value=0x8c3b238, return_value_ptr=0x0, this_ptr=0x8c38100, return_value_used=0, tsrm_ls=0x8af8050) at /home/felipe/dev/php5/ext/pdo/pdo_stmt.c:1391 #6 0x084331b8 in zend_do_fcall_common_helper_SPEC (execute_data=0x8c6745c, tsrm_ls=0x8af8050) at /home/felipe/dev/php5/Zend/zend_vm_execute.h:313 #7 0x08434337 in ZEND_DO_FCALL_BY_NAME_SPEC_HANDLER (execute_data=0x8c6745c, tsrm_ls=0x8af8050) at /home/felipe/dev/php5/Zend/zend_vm_execute.h:422 -- Edit bug report at http://bugs.php.net/?id=47415&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=47415&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=47415&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=47415&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=47415&r=fixedcvs Fixed in CVS and need be documented: http://bugs.php.net/fix.php?id=47415&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=47415&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=47415&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=47415&r=needscript Try newer version: http://bugs.php.net/fix.php?id=47415&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=47415&r=support Expected behavior: http://bugs.php.net/fix.php?id=47415&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=47415&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=47415&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=47415&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=47415&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=47415&r=dst IIS Stability: http://bugs.php.net/fix.php?id=47415&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=47415&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=47415&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=47415&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=47415&r=mysqlcfg
#48087 [NEW]: call_user_method() invalid free of arguments
From: fel...@php.net Operating system: PHP version: 5.3.0RC1 PHP Bug Type: Scripting Engine problem Bug description: call_user_method() invalid free of arguments Description: See below. Reproduce code: --- http://bugs.php.net/?id=48087&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=48087&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=48087&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=48087&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=48087&r=fixedcvs Fixed in CVS and need be documented: http://bugs.php.net/fix.php?id=48087&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=48087&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=48087&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=48087&r=needscript Try newer version: http://bugs.php.net/fix.php?id=48087&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=48087&r=support Expected behavior: http://bugs.php.net/fix.php?id=48087&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=48087&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=48087&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=48087&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=48087&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=48087&r=dst IIS Stability: http://bugs.php.net/fix.php?id=48087&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=48087&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=48087&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=48087&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=48087&r=mysqlcfg
[PHP-BUG] Bug #51911 [NEW]: ReflectionParameter::getDefaultValue() memory leaks with constant array
From: felipe Operating system: * PHP version: Irrelevant Package: Reflection related Bug Type: Bug Bug description:ReflectionParameter::getDefaultValue() memory leaks with constant array Description: See below. Test script: --- getMethod('x'); foreach ($method->getParameters() as $param) { if ( $param->isDefaultValueAvailable()) echo '$', $param->getName(), ' : ', var_export($param->getDefaultValue(), 1), "\n"; } Expected result: No memleak. :) Actual result: -- $ sapi/cli/php ../bug.php $x : array ( 0 => 1, ) [Tue May 25 19:40:32 2010] Script: '../bug.php' /home/felipe/dev/php5_2/Zend/zend_compile.c(3415) : Freeing 0x08646078 (16 bytes), script=../bug.php [Tue May 25 19:40:32 2010] Script: '../bug.php' /home/felipe/dev/php5_2/ext/reflection/php_reflection.c(2174) : Freeing 0x08648CA4 (44 bytes), script=../bug.php /home/felipe/dev/php5_2/Zend/zend_variables.c(131) : Actual location (location was relayed) [Tue May 25 19:40:32 2010] Script: '../bug.php' /home/felipe/dev/php5_2/Zend/zend_variables.c(132) : Freeing 0x08648D00 (32 bytes), script=../bug.php /home/felipe/dev/php5_2/Zend/zend_alloc.c(2391) : Actual location (location was relayed) [Tue May 25 19:40:32 2010] Script: '../bug.php' /home/felipe/dev/php5_2/Zend/zend_hash.c(788) : Freeing 0x08648D50 (35 bytes), script=../bug.php /home/felipe/dev/php5_2/Zend/zend_hash.c(388) : Actual location (location was relayed) === Total 4 memory leaks detected === -- Edit bug report at http://bugs.php.net/bug.php?id=51911&edit=1 -- Try a snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=51911&r=trysnapshot52 Try a snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=51911&r=trysnapshot53 Try a snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=51911&r=trysnapshot60 Fixed in SVN: http://bugs.php.net/fix.php?id=51911&r=fixed Fixed in SVN and need be documented: http://bugs.php.net/fix.php?id=51911&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=51911&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=51911&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=51911&r=needscript Try newer version: http://bugs.php.net/fix.php?id=51911&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=51911&r=support Expected behavior: http://bugs.php.net/fix.php?id=51911&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=51911&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=51911&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=51911&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=51911&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=51911&r=dst IIS Stability: http://bugs.php.net/fix.php?id=51911&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=51911&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=51911&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=51911&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=51911&r=mysqlcfg
[PHP-BUG] Bug #52041 [NEW]: Memory leak when writing on uninitialized variable returned from function
From: felipe Operating system: Linux PHP version: Irrelevant Package: Scripting Engine problem Bug Type: Bug Bug description:Memory leak when writing on uninitialized variable returned from function Description: See below. Test script: --- a = 1; Expected result: No memory leak. Actual result: -- Zend/zend_execute.c(723) : Freeing 0x0A395E1C (20 bytes), script=../bug.php === Total 1 memory leaks detected === -- Edit bug report at http://bugs.php.net/bug.php?id=52041&edit=1 -- Try a snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=52041&r=trysnapshot52 Try a snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=52041&r=trysnapshot53 Try a snapshot (trunk): http://bugs.php.net/fix.php?id=52041&r=trysnapshottrunk Fixed in SVN: http://bugs.php.net/fix.php?id=52041&r=fixed Fixed in SVN and need be documented: http://bugs.php.net/fix.php?id=52041&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=52041&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=52041&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=52041&r=needscript Try newer version: http://bugs.php.net/fix.php?id=52041&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=52041&r=support Expected behavior: http://bugs.php.net/fix.php?id=52041&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=52041&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=52041&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=52041&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=52041&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=52041&r=dst IIS Stability: http://bugs.php.net/fix.php?id=52041&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=52041&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=52041&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=52041&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=52041&r=mysqlcfg
[PHP-BUG] Bug #52060 [NEW]: Memory leak when passing a closure to method_exists()
From: felipe Operating system: Linux PHP version: 5.3.2 Package: Scripting Engine problem Bug Type: Bug Bug description:Memory leak when passing a closure to method_exists() Description: See below. Test script: --- var_dump(method_exists('closure', '__invoke')); Actual result: -- /home/felipe/dev/phptrunk/Zend/zend_closures.c(136) : Freeing 0x08C374D4 (9 bytes), script=- [Fri Jun 11 19:57:03 2010] Script: '-' /home/felipe/dev/phptrunk/Zend/zend_closures.c(128) : Freeing 0x08C37F68 (164 bytes), script=- === Total 2 memory leaks detected === -- Edit bug report at http://bugs.php.net/bug.php?id=52060&edit=1 -- Try a snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=52060&r=trysnapshot52 Try a snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=52060&r=trysnapshot53 Try a snapshot (trunk): http://bugs.php.net/fix.php?id=52060&r=trysnapshottrunk Fixed in SVN: http://bugs.php.net/fix.php?id=52060&r=fixed Fixed in SVN and need be documented: http://bugs.php.net/fix.php?id=52060&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=52060&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=52060&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=52060&r=needscript Try newer version: http://bugs.php.net/fix.php?id=52060&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=52060&r=support Expected behavior: http://bugs.php.net/fix.php?id=52060&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=52060&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=52060&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=52060&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=52060&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=52060&r=dst IIS Stability: http://bugs.php.net/fix.php?id=52060&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=52060&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=52060&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=52060&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=52060&r=mysqlcfg
[PHP-BUG] Bug #51231 [NEW]: mysqli::connect crashes
From: felipe Operating system: Linux PHP version: 5.3SVN-2010-03-07 (SVN) Package: MySQLi related Bug Type: Bug Bug description:mysqli::connect crashes Description: Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0xb75376d0 (LWP 14083)] 0xb763b38b in strlen () from /lib/i686/cmov/libc.so.6 (gdb) bt #0 0xb763b38b in strlen () from /lib/i686/cmov/libc.so.6 #1 0x081f0e69 in php_mysqli_close (mysql=0x9e3a7c4, close_type=0, tsrm_ls=0x9ccd070) at /home/felipe/dev/php5/ext/mysqli/mysqli_api.c:562 #2 0x081ea033 in mysqli_link_free_storage (object=0x9e394f4, tsrm_ls=0x9ccd070) at /home/felipe/dev/php5/ext/mysqli/mysqli.c:225 Test script: --- $x = new mysqli; $x->connect(); Expected result: No crash. Actual result: -- Warning: mysqli::connect(): (HY000/2002): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) in Command line code on line 1 Segmentation fault -- Edit bug report at http://bugs.php.net/bug.php?id=51231&edit=1 -- Try a snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=51231&r=trysnapshot52 Try a snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=51231&r=trysnapshot53 Try a snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=51231&r=trysnapshot60 Fixed in SVN: http://bugs.php.net/fix.php?id=51231&r=fixed Fixed in SVN and need be documented: http://bugs.php.net/fix.php?id=51231&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=51231&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=51231&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=51231&r=needscript Try newer version: http://bugs.php.net/fix.php?id=51231&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=51231&r=support Expected behavior: http://bugs.php.net/fix.php?id=51231&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=51231&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=51231&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=51231&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=51231&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=51231&r=dst IIS Stability: http://bugs.php.net/fix.php?id=51231&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=51231&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=51231&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=51231&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=51231&r=mysqlcfg
Bug #1 [PATCH]: Apache 1.3b3 + mod_php3 is slow
Edit report at http://bugs.php.net/bug.php?id=1&edit=1 ID: 1 Patch added by: fel...@php.net Reported by: rasmus at lerdorf dot on dot ca Summary: Apache 1.3b3 + mod_php3 is slow Status: Assigned Type: Bug Package: Performance problem Operating System: Solaris 2.5.1 PHP Version: 3.0b3 Assigned To: felipe New Comment: The following patch has been added/updated: Patch Name: testing Revision: 1268154976 URL: http://bugs.php.net/patch-display.php?bug=1&patch=testing&revision=1268154976 Previous Comments: [2010-03-09 17:48:29] fel...@php.net The following patch has been added/updated: Patch Name: abcc Revision: 1268153309 URL: http://bugs.php.net/patch-display.php?bug=1&patch=abcc&revision=1268153309&display=1 ---- [2010-03-09 17:47:29] fel...@php.net The following patch has been added/updated: Patch Name: abc Revision: 1268153249 URL: http://bugs.php.net/patch-display.php?bug=1&patch=abc&revision=1268153249&display=1 -------- [2010-03-09 14:08:52] fel...@php.net The following patch has been added/updated: Patch Name: abc123 Revision: 1268140132 URL: http://bugs.php.net/patch-display.php?bug=1&patch=abc123&revision=1268140132&display=1 [2010-03-04 14:58:42] j...@php.net One more time.. :) [2010-03-04 14:56:36] j...@php.net Testing duplication.. The remainder of the comments for this report are too long. To view the rest of the comments, please view the bug report online at http://bugs.php.net/bug.php?id=1 -- Edit this bug report at http://bugs.php.net/bug.php?id=1&edit=1
[PHP-BUG] Bug #52614 [NEW]: Memory leak when writing on uninitialized variable returned from method call
From: felipe Operating system: PHP version: Irrelevant Package: Scripting Engine problem Bug Type: Bug Bug description:Memory leak when writing on uninitialized variable returned from method call Description: See below. It is just like the #52041, but on method calls. Test script: --- x; } } $foo = new foo; $foo->test()->a = 1; Expected result: No memory leak Actual result: -- [Sun Aug 15 14:09:42 2010] Script: '../bug.php' /home/felipe/dev/phptrunk/Zend/zend_execute.c(693) : Freeing 0xB7C09524 (20 bytes), script=../bug.php === Total 1 memory leaks detected === -- Edit bug report at http://bugs.php.net/bug.php?id=52614&edit=1 -- Try a snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=52614&r=trysnapshot52 Try a snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=52614&r=trysnapshot53 Try a snapshot (trunk): http://bugs.php.net/fix.php?id=52614&r=trysnapshottrunk Fixed in SVN: http://bugs.php.net/fix.php?id=52614&r=fixed Fixed in SVN and need be documented: http://bugs.php.net/fix.php?id=52614&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=52614&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=52614&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=52614&r=needscript Try newer version: http://bugs.php.net/fix.php?id=52614&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=52614&r=support Expected behavior: http://bugs.php.net/fix.php?id=52614&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=52614&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=52614&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=52614&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=52614&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=52614&r=dst IIS Stability: http://bugs.php.net/fix.php?id=52614&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=52614&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=52614&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=52614&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=52614&r=mysqlcfg
[PHP-BUG] Bug #53305 [NEW]: E_NOTICE when defining a constant starts with __COMPILER_HALT_OFFSET__
From: felipe Operating system: PHP version: Irrelevant Package: Scripting Engine problem Bug Type: Bug Bug description:E_NOTICE when defining a constant starts with __COMPILER_HALT_OFFSET__ Description: See below. Test script: --- http://bugs.php.net/bug.php?id=53305&edit=1 -- Try a snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=53305&r=trysnapshot52 Try a snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=53305&r=trysnapshot53 Try a snapshot (trunk): http://bugs.php.net/fix.php?id=53305&r=trysnapshottrunk Fixed in SVN: http://bugs.php.net/fix.php?id=53305&r=fixed Fixed in SVN and need be documented: http://bugs.php.net/fix.php?id=53305&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=53305&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=53305&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=53305&r=needscript Try newer version: http://bugs.php.net/fix.php?id=53305&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=53305&r=support Expected behavior: http://bugs.php.net/fix.php?id=53305&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=53305&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=53305&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=53305&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=53305&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=53305&r=dst IIS Stability: http://bugs.php.net/fix.php?id=53305&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=53305&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=53305&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=53305&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=53305&r=mysqlcfg
[PHP-BUG] Bug #53335 [NEW]: pdo_firebird did not implement rowCount()
From: felipe Operating system: PHP version: Irrelevant Package: PDO related Bug Type: Bug Bug description:pdo_firebird did not implement rowCount() Description: http://news.php.net/php.pdo/483 -- Edit bug report at http://bugs.php.net/bug.php?id=53335&edit=1 -- Try a snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=53335&r=trysnapshot52 Try a snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=53335&r=trysnapshot53 Try a snapshot (trunk): http://bugs.php.net/fix.php?id=53335&r=trysnapshottrunk Fixed in SVN: http://bugs.php.net/fix.php?id=53335&r=fixed Fixed in SVN and need be documented: http://bugs.php.net/fix.php?id=53335&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=53335&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=53335&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=53335&r=needscript Try newer version: http://bugs.php.net/fix.php?id=53335&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=53335&r=support Expected behavior: http://bugs.php.net/fix.php?id=53335&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=53335&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=53335&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=53335&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=53335&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=53335&r=dst IIS Stability: http://bugs.php.net/fix.php?id=53335&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=53335&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=53335&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=53335&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=53335&r=mysqlcfg
[PHP-BUG] Bug #54400 [NEW]: AppendIterator call stack overflow
From: felipe Operating system: PHP version: Irrelevant Package: SPL related Bug Type: Bug Bug description:AppendIterator call stack overflow Description: See below. Test script: --- append($x); Expected result: No crash Actual result: -- SIGSEGV -- Edit bug report at http://bugs.php.net/bug.php?id=54400&edit=1 -- Try a snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=54400&r=trysnapshot52 Try a snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=54400&r=trysnapshot53 Try a snapshot (trunk): http://bugs.php.net/fix.php?id=54400&r=trysnapshottrunk Fixed in SVN: http://bugs.php.net/fix.php?id=54400&r=fixed Fixed in SVN and need be documented: http://bugs.php.net/fix.php?id=54400&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=54400&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=54400&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=54400&r=needscript Try newer version: http://bugs.php.net/fix.php?id=54400&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=54400&r=support Expected behavior: http://bugs.php.net/fix.php?id=54400&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=54400&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=54400&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=54400&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=54400&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=54400&r=dst IIS Stability: http://bugs.php.net/fix.php?id=54400&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=54400&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=54400&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=54400&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=54400&r=mysqlcfg
Bug #54934 [PATCH]: Unresolved symbol strtoull
Edit report at http://bugs.php.net/bug.php?id=54934&edit=1 ID: 54934 Patch added by: fel...@php.net Reported by:php at dactar dot ch Summary:Unresolved symbol strtoull Status: Open Type: Bug Package:Compile Failure Operating System: HP-UX 11.11 PHP Version:5.3.6 Block user comment: N Private report: N New Comment: The following patch has been added/updated: Patch Name: fix-build Revision: 1306457948 URL: http://bugs.php.net/patch-display.php?bug=54934&patch=fix-build&revision=1306457948 Previous Comments: [2011-05-26 09:58:31] php at dactar dot ch Description: I've compiled PHP 5.3.6 on HP-UX 11.11 with following parameters : ./configure --disable-cli --with-config-file-path=/path/to/etc/php --with-sybase-ct=/path/to/sybase --with-imap=/path/to/imap --with-imap-ssl=/usr --with-libxml-dir=/path/to/libxml2 --with-gd --with-png-dir=/path/to/libpng --with-jpeg-dir=/path/to/jpeg --with-freetype-dir=/path/to/freetype --with-ldap --prefix=/path/to/php --with-apxs=/path/to/apache/bin/apxs When I start apache, I've the following error : /usr/lib/dld.sl: Unresolved symbol: strtoull (code) from /path/to/apache/libexec/libphp5.so If I compile without the option "--disable-cli", the error appears at compile time. According to this page : http://gcc.gnu.org/ml/libstdc++/2002-03/msg00164.html, HP-UX does not provide strtoll or strtoull functions in libc in 64 bit mode since they are the same as strtol and strtoul so we define the libstdc++ functions to call strtol and strtoul. I've resolved the situation with replacing all "strtoull" terms by "strtoul" on the file ext/fileinfo/libmagic/apprentice.c -- Edit this bug report at http://bugs.php.net/bug.php?id=54934&edit=1
[PHP-BUG] Bug #54957 [NEW]: Memleak in alloc_globals_ctor
From: felipe Operating system: PHP version: trunk-SVN-2011-05-30 (SVN) Package: Scripting Engine problem Bug Type: Bug Bug description:Memleak in alloc_globals_ctor Description: A memory leak happens when using ZTS+USE_ZEND_ALLOC=0 Test script: --- $ USE_ZEND_ALLOC=0 valgrind --tool=memcheck --leak-check=yes sapi/cli/php -v ==17712== Memcheck, a memory error detector ==17712== Copyright (C) 2002-2010, and GNU GPL'd, by Julian Seward et al. ==17712== Using Valgrind-3.6.0.SVN-Debian and LibVEX; rerun with -h for copyright info ==17712== Command: sapi/cli/php -v ==17712== PHP 5.5.0-dev (cli) (built: May 30 2011 18:37:59) (DEBUG) Copyright (c) 1997-2011 The PHP Group Zend Engine v2.4.0, Copyright (c) 1998-2011 Zend Technologies ==17712== ==17712== HEAP SUMMARY: ==17712== in use at exit: 604 bytes in 1 blocks ==17712== total heap usage: 19,354 allocs, 19,353 frees, 1,466,000 bytes allocated ==17712== ==17712== 604 bytes in 1 blocks are definitely lost in loss record 1 of 1 ==17712==at 0x4023F50: malloc (vg_replace_malloc.c:236) ==17712==by 0x8429867: alloc_globals_ctor (zend_alloc.c:2633) ==17712==by 0x83C103F: ts_allocate_id (TSRM.c:255) ==17712==by 0x8429917: start_memory_manager (zend_alloc.c:2654) ==17712==by 0x845D1A4: zend_startup (zend.c:642) ==17712==by 0x83C893A: php_module_startup (main.c:1901) ==17712==by 0x85A479B: php_cli_startup (php_cli.c:414) ==17712==by 0x85A567B: main (php_cli.c:790) ==17712== ==17712== LEAK SUMMARY: ==17712==definitely lost: 604 bytes in 1 blocks ==17712==indirectly lost: 0 bytes in 0 blocks ==17712== possibly lost: 0 bytes in 0 blocks ==17712==still reachable: 0 bytes in 0 blocks ==17712== suppressed: 0 bytes in 0 blocks ==17712== ==17712== For counts of detected and suppressed errors, rerun with: -v ==17712== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 34 from 9) -- Edit bug report at http://bugs.php.net/bug.php?id=54957&edit=1 -- Try a snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=54957&r=trysnapshot52 Try a snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=54957&r=trysnapshot53 Try a snapshot (trunk): http://bugs.php.net/fix.php?id=54957&r=trysnapshottrunk Fixed in SVN: http://bugs.php.net/fix.php?id=54957&r=fixed Fixed in SVN and need be documented: http://bugs.php.net/fix.php?id=54957&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=54957&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=54957&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=54957&r=needscript Try newer version: http://bugs.php.net/fix.php?id=54957&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=54957&r=support Expected behavior: http://bugs.php.net/fix.php?id=54957&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=54957&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=54957&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=54957&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=54957&r=php4 Daylight Savings:http://bugs.php.net/fix.php?id=54957&r=dst IIS Stability: http://bugs.php.net/fix.php?id=54957&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=54957&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=54957&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=54957&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=54957&r=mysqlcfg
Bug #55407 [PATCH]: Impossible to prototype DateTime::createFromFormat
Edit report at https://bugs.php.net/bug.php?id=55407&edit=1 ID: 55407 Patch added by: fel...@php.net Reported by:landeholm at gmail dot com Summary:Impossible to prototype DateTime::createFromFormat Status: Assigned Type: Bug Package:Date/time related Operating System: Irrelevant PHP Version:5.3.6 Assigned To:derick Block user comment: N Private report: N New Comment: The following patch has been added/updated: Patch Name: fix Revision: 1313105776 URL: https://bugs.php.net/patch-display.php?bug=55407&patch=fix&revision=1313105776 Previous Comments: [2011-08-11 23:14:28] pierr...@php.net The method signature is in fact : createFromFormat($format, $time, $timezone = null); Assign this to derick to confirm that we need to change the documentation to reflect the real method signature (or the opposit ?) [2011-08-11 20:52:14] landeholm at gmail dot com Here is the related commit (adding the class above): https://github.com/melt/melt/commit/4c08b7e65ad9a3dbf165768b0fa55a99862cf910 Here is my temporary workaround: https://github.com/melt/melt/commit/25c295fd86a52f84f18777814d7efaa8cf372fd6 [2011-08-11 20:10:00] landeholm at gmail dot com Description: Hello, I'm creating an extended DateTime for my framework. The test script below gives "E_STRICT: Declaration of melt\core\DateTime::createFromFormat() should be compatible with that of DateTime::createFromFormat()" even though it's declared exactly as documented. Also removing all the arguments what so ever doesn't make this problem go away so it's impossible to prototype DateTime::createFromFormat without getting this error. Test script: --- https://bugs.php.net/bug.php?id=55407&edit=1
[PHP-BUG] Bug #55688 [NEW]: Crash when calling SessionHandler::gc()
From: felipe Operating system: PHP version: trunk-SVN-2011-09-14 (SVN) Package: Session related Bug Type: Bug Bug description:Crash when calling SessionHandler::gc() Description: See below. Test script: --- gc(1); Expected result: No crash. Actual result: -- Program received signal SIGSEGV, Segmentation fault. 0x08281f38 in ps_gc_files (mod_data=0x8949fe4, maxlifetime=1, nrdels=0xbfffcd50, tsrm_ls=0x88b0050) at /home/felipe/dev/phptrunk/ext/session/mod_files.c:447 447 if (data->dirdepth == 0) { (gdb) p data $1 = (ps_files *) 0x0 -- Edit bug report at https://bugs.php.net/bug.php?id=55688&edit=1 -- Try a snapshot (PHP 5.4): https://bugs.php.net/fix.php?id=55688&r=trysnapshot54 Try a snapshot (PHP 5.3): https://bugs.php.net/fix.php?id=55688&r=trysnapshot53 Try a snapshot (trunk): https://bugs.php.net/fix.php?id=55688&r=trysnapshottrunk Fixed in SVN: https://bugs.php.net/fix.php?id=55688&r=fixed Fixed in SVN and need be documented: https://bugs.php.net/fix.php?id=55688&r=needdocs Fixed in release: https://bugs.php.net/fix.php?id=55688&r=alreadyfixed Need backtrace: https://bugs.php.net/fix.php?id=55688&r=needtrace Need Reproduce Script: https://bugs.php.net/fix.php?id=55688&r=needscript Try newer version: https://bugs.php.net/fix.php?id=55688&r=oldversion Not developer issue: https://bugs.php.net/fix.php?id=55688&r=support Expected behavior: https://bugs.php.net/fix.php?id=55688&r=notwrong Not enough info: https://bugs.php.net/fix.php?id=55688&r=notenoughinfo Submitted twice: https://bugs.php.net/fix.php?id=55688&r=submittedtwice register_globals: https://bugs.php.net/fix.php?id=55688&r=globals PHP 4 support discontinued: https://bugs.php.net/fix.php?id=55688&r=php4 Daylight Savings:https://bugs.php.net/fix.php?id=55688&r=dst IIS Stability: https://bugs.php.net/fix.php?id=55688&r=isapi Install GNU Sed: https://bugs.php.net/fix.php?id=55688&r=gnused Floating point limitations: https://bugs.php.net/fix.php?id=55688&r=float No Zend Extensions: https://bugs.php.net/fix.php?id=55688&r=nozend MySQL Configuration Error: https://bugs.php.net/fix.php?id=55688&r=mysqlcfg
[PHP-BUG] Bug #60377 [NEW]: ZipArchive::extractTo() memory leaks with invalid path using phar://
From: felipe Operating system: PHP version: trunk-SVN-2011-11-24 (SVN) Package: Zip Related Bug Type: Bug Bug description:ZipArchive::extractTo() memory leaks with invalid path using phar:// Description: See below. Test script: --- extractTo("phar:///usr/local/bin/phar.phar/a"); Actual result: -- $ sapi/cli/php ../bug.php [Thu Nov 24 19:50:30 2011] Script: '../bug.php' /home/felipe/dev/phptrunk/main/streams/streams.c(258) : Freeing 0x7FF3DEA323F8 (8 bytes), script=../bug.php [Thu Nov 24 19:50:30 2011] Script: '../bug.php' /home/felipe/dev/phptrunk/main/spprintf.c(236) : Freeing 0x7FF3DEA35440 (207 bytes), script=../bug.php === Total 2 memory leaks detected === -- Edit bug report at https://bugs.php.net/bug.php?id=60377&edit=1 -- Try a snapshot (PHP 5.4): https://bugs.php.net/fix.php?id=60377&r=trysnapshot54 Try a snapshot (PHP 5.3): https://bugs.php.net/fix.php?id=60377&r=trysnapshot53 Try a snapshot (trunk): https://bugs.php.net/fix.php?id=60377&r=trysnapshottrunk Fixed in SVN: https://bugs.php.net/fix.php?id=60377&r=fixed Fixed in SVN and need be documented: https://bugs.php.net/fix.php?id=60377&r=needdocs Fixed in release: https://bugs.php.net/fix.php?id=60377&r=alreadyfixed Need backtrace: https://bugs.php.net/fix.php?id=60377&r=needtrace Need Reproduce Script: https://bugs.php.net/fix.php?id=60377&r=needscript Try newer version: https://bugs.php.net/fix.php?id=60377&r=oldversion Not developer issue: https://bugs.php.net/fix.php?id=60377&r=support Expected behavior: https://bugs.php.net/fix.php?id=60377&r=notwrong Not enough info: https://bugs.php.net/fix.php?id=60377&r=notenoughinfo Submitted twice: https://bugs.php.net/fix.php?id=60377&r=submittedtwice register_globals: https://bugs.php.net/fix.php?id=60377&r=globals PHP 4 support discontinued: https://bugs.php.net/fix.php?id=60377&r=php4 Daylight Savings:https://bugs.php.net/fix.php?id=60377&r=dst IIS Stability: https://bugs.php.net/fix.php?id=60377&r=isapi Install GNU Sed: https://bugs.php.net/fix.php?id=60377&r=gnused Floating point limitations: https://bugs.php.net/fix.php?id=60377&r=float No Zend Extensions: https://bugs.php.net/fix.php?id=60377&r=nozend MySQL Configuration Error: https://bugs.php.net/fix.php?id=60377&r=mysqlcfg
[PHP-BUG] Bug #63389 [NEW]: Missing context check on libxml_set_streams_context() causes memleak
From: felipe Operating system: PHP version: Irrelevant Package: XML related Bug Type: Bug Bug description:Missing context check on libxml_set_streams_context() causes memleak Description: See below. Test script: --- https://bugs.php.net/bug.php?id=63389&edit=1 -- Try a snapshot (PHP 5.4): https://bugs.php.net/fix.php?id=63389&r=trysnapshot54 Try a snapshot (PHP 5.3): https://bugs.php.net/fix.php?id=63389&r=trysnapshot53 Try a snapshot (trunk): https://bugs.php.net/fix.php?id=63389&r=trysnapshottrunk Fixed in SVN: https://bugs.php.net/fix.php?id=63389&r=fixed Fixed in release: https://bugs.php.net/fix.php?id=63389&r=alreadyfixed Need backtrace: https://bugs.php.net/fix.php?id=63389&r=needtrace Need Reproduce Script: https://bugs.php.net/fix.php?id=63389&r=needscript Try newer version: https://bugs.php.net/fix.php?id=63389&r=oldversion Not developer issue:https://bugs.php.net/fix.php?id=63389&r=support Expected behavior: https://bugs.php.net/fix.php?id=63389&r=notwrong Not enough info: https://bugs.php.net/fix.php?id=63389&r=notenoughinfo Submitted twice: https://bugs.php.net/fix.php?id=63389&r=submittedtwice register_globals: https://bugs.php.net/fix.php?id=63389&r=globals PHP 4 support discontinued: https://bugs.php.net/fix.php?id=63389&r=php4 Daylight Savings: https://bugs.php.net/fix.php?id=63389&r=dst IIS Stability: https://bugs.php.net/fix.php?id=63389&r=isapi Install GNU Sed:https://bugs.php.net/fix.php?id=63389&r=gnused Floating point limitations: https://bugs.php.net/fix.php?id=63389&r=float No Zend Extensions: https://bugs.php.net/fix.php?id=63389&r=nozend MySQL Configuration Error: https://bugs.php.net/fix.php?id=63389&r=mysqlcfg