|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-06-15 04:27 UTC] andrei@php.net
[2006-06-15 04:34 UTC] cweiske@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 03:00:01 2025 UTC |
Description: ------------ When removing an iterator from a liststore in the foreach() callback, php crashes with *** glibc detected *** double free or corruption (fasttop): 0x08d92758 *** Reproduce code: --------------- <?php $ls = new GtkListStore(Gtk::TYPE_STRING); $ls->append(array('test')); $ls->foreach('foreachList'); function foreachList($ls, $path, $iter) { $ls->remove($iter); } ?>