|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchescall_user_func_array.patch (last revision 2012-03-04 16:00 UTC by nikic@php.net)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-03-04 15:33 UTC] nikic@php.net
[2012-03-04 15:53 UTC] nikic@php.net
[2012-03-04 16:00 UTC] nikic@php.net
[2012-03-04 17:44 UTC] pajoye@php.net
[2012-03-04 17:44 UTC] pajoye@php.net
-Status: Open
+Status: Assigned
-Assigned To:
+Assigned To: dmitry
[2012-03-11 15:28 UTC] laruence@php.net
[2012-03-11 15:29 UTC] laruence@php.net
-Status: Assigned
+Status: Closed
[2012-03-11 15:29 UTC] laruence@php.net
[2012-04-18 09:45 UTC] laruence@php.net
[2012-07-24 23:36 UTC] rasmus@php.net
[2013-11-17 09:33 UTC] laruence@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 04:00:01 2025 UTC |
Description: ------------ The following code: call_user_func_array(function(&$a) {}, $array = array_fill(0, 16334, "*")); Produces this output: Warning: Parameter 1 to {closure}() expected to be a reference, value given in Command line code on line 1 [Sun Mar 4 16:17:15 2012] Script: '-' /home/nikic/dev/php-src/trunk/Zend/zend_hash.c(832) : Freeing 0xB72FC03C (36 bytes), script=- /home/nikic/dev/php-src/trunk/Zend/zend_hash.c(412) : Actual location (location was relayed) Last leak repeated 16333 times [Sun Mar 4 16:17:15 2012] Script: '-' /home/nikic/dev/php-src/trunk/Zend/zend_hash.c(376) : Freeing 0xB744103C (65536 bytes), script=- /home/nikic/dev/php-src/trunk/Zend/zend_alloc.c(2529) : Actual location (location was relayed) [Sun Mar 4 16:17:15 2012] Script: '-' /home/nikic/dev/php-src/trunk/Zend/zend_API.c(315) : Freeing 0xB74C0D50 (44 bytes), script=- /home/nikic/dev/php-src/trunk/Zend/zend_variables.c(134) : Actual location (location was relayed) Last leak repeated 1 time [Sun Mar 4 16:17:15 2012] Script: '-' /home/nikic/dev/php-src/trunk/Zend/zend_vm_execute.h(6788) : Freeing 0xB78560A8 (20 bytes), script=- [Sun Mar 4 16:17:15 2012] Script: '-' /home/nikic/dev/php-src/trunk/Zend/zend_vm_execute.h(2378) : Freeing 0xB7857380 (2 bytes), script=- /home/nikic/dev/php-src/trunk/Zend/zend_variables.c(121) : Actual location (location was relayed) [Sun Mar 4 16:17:15 2012] Script: '-' /home/nikic/dev/php-src/trunk/Zend/zend_vm_execute.h(2375) : Freeing 0xB7858360 (20 bytes), script=- === Total 16340 memory leaks detected === If you do some more stuff after the call PHP will eventually segfault. This only happens if the *first* argument of the callback is by-ref and only happens after a certain number of arguments (for me it starts with 16334). That's why I guess that this has something to do with http://lxr.php.net/xref/PHP_TRUNK/Zend/zend_execute_API.c#862 (i == 0 => branch not entered) and http://lxr.php.net/xref/PHP_TRUNK/Zend/zend_execute_API.c#851 (as it is only for large argument numbers).