|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-08-07 11:04 UTC] j0j0 at riod dot ca
[2008-08-15 08:00 UTC] alexander_bottema at hotmail dot com
[2008-08-26 09:06 UTC] alexander_bottema at hotmail dot com
[2008-08-26 09:10 UTC] alexander_bottema at hotmail dot com
[2008-09-02 06:52 UTC] scottmac@php.net
[2008-09-02 08:08 UTC] scottmac@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 16 06:00:02 2025 UTC |
Description: ------------ When executing the following code on PHP 5.2.6 (CLI or through Apache) I get a segmentation fault. Here is the output I get: % php test_svn.php Opening lock on a repo... resource(4) of type (svn-repos) Getting file system handle... resource(5) of type (svn-fs) HEAD Revision: 1 Geting revision root handle... Segmentation fault Reproduce code: --------------- <?php echo "Opening lock on a repo...\n"; $lock = svn_repos_open('/var/svn_repos/my_repo'); var_dump($lock); echo "Getting file system handle...\n"; $fs = svn_repos_fs($lock); var_dump($fs); $head = svn_fs_youngest_rev($fs); echo "HEAD Revision: $head\n"; echo "Geting revision root handle...\n"; $root = svn_fs_revision_root($fs, $head); var_dump($root); ?>