|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-02-11 18:41 UTC] jimjag@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: jimjag
[2015-02-11 18:41 UTC] jimjag@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 17 09:00:01 2025 UTC |
Description: ------------ gnupg_keylistiterator segfaults on iteration. Test script: --------------- <?php // create a new iterator for listing all public keys that matches 'example' $iterator = new gnupg_keylistiterator("example"); echo "test"; foreach($iterator as $fingerprint => $userid){ echo $fingerprint." -> ".$userid."\n"; } ?> Expected result: ---------------- fingerprint -> userid Actual result: -------------- Segmentation fault