|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-01-10 13:52 UTC] volker at puttrich dot net
[2005-01-10 13:56 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 14:00:01 2025 UTC |
Description: ------------ Calling functions "getMyUid()" followed by "get_current_user()", or vice versa, crashes the following environment... Server software as reported by PHP: Apache/2.0.52 (Win32) mod_perl/1.99_16 Perl/v5.8.4 PHP/5.0.2 mod_ssl/2.0.52 OpenSSL/0.9.7d mod_python/3.1.3 Python/2.3.3 The OS used is Win2k SP4 including all available patches. NOTE: The crash also occurs when "get_current_user()" is used in combination with "getMyGid()", "getMyPid()" and probably other related functions. Reproduce code: --------------- <?php echo("Crash test<br />\n"); $sUser = get_current_user(); $nUID = getmyuid(); echo("Result, get_current_user(): ". $sUser ." / ". $nUID); ?> Expected result: ---------------- Crash test Result, get_current_user(): SYSTEM / 0