ID: 8672
User Update by: [EMAIL PROTECTED]
Old-Status: Feedback
Status: Closed
Bug Type: Variables related
Operating system: Redhat Linux 6.2
PHP Version: 4.0.4
Description: Crash when returning a variable from function as argument

I can't reproduce this with 4.0.5. Seems to be fixed ;)


Previous Comments:
---------------------------------------------------------------------------

[2001-05-16 01:02:47] [EMAIL PROTECTED]
Does this happen with PHP 4.0.5 or not?

--Jani


---------------------------------------------------------------------------

[2001-04-28 14:45:15] [EMAIL PROTECTED]
Can you try to reprocude this when php 4.0.5 will be released next week? 

---------------------------------------------------------------------------

[2001-01-12 05:30:39] [EMAIL PROTECTED]
I had code like this:
$user = new eZUser( $session->variable("AuthenticatedUser" ) );

And I noticed now that this creates a segfault in php.

The workaround is changing the code to:

$val = $session->variable( "AuthenticatedUser" );
$user = new eZUser( $val );


The code worked with php-4.0.3pl1 and has worked with 
4.0.4, but it's reproduceable and I think it's a PHP bug.

The eZSession::variable() function returns a string value.

I've tested it with 4.0.4pl1 and the bug is still there.

---------------------------------------------------------------------------


Full Bug description available at: http://bugs.php.net/?id=8672


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to