Edit report at https://bugs.php.net/bug.php?id=49273&edit=1

 ID:               49273
 Updated by:       php-bugs@lists.php.net
 Reported by:      moisadoru at gmail dot com
 Summary:          setcookie() segfaults the php process when adding a
                   positive expires value
-Status:           Feedback
+Status:           No Feedback
 Type:             Bug
 Package:          HTTP related
 Operating System: Ubuntu linux 9.10alpha3 64bit
 PHP Version:      6SVN-2009-08-16 (snap)

 New Comment:

No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.


Previous Comments:
------------------------------------------------------------------------
[2011-07-03 04:22:01] geiss...@php.net

Please try using this snapshot:

  http://snaps.php.net/php-trunk-latest.tar.gz
 
For Windows:

  http://windows.php.net/snapshots/



------------------------------------------------------------------------
[2009-08-16 18:00:48] moisadoru at gmail dot com

This bug is also present in the latest SVN (r287372)

------------------------------------------------------------------------
[2009-08-16 16:58:56] moisadoru at gmail dot com

Description:
------------
When setting a cookie with setcookie(), if the expires parameter is a positive 
integer, the PHP child process segfaults.

Environment; Apache 2.2.12, PHP 6.0-200908152030, Ubuntu 9.10 alpha3 linux 
kernel 2.6.31 64bit.



Reproduce code:
---------------
<?php

    header('Set-Cookie: cookie1=foo1; expires=Sun, 16-Aug-2009 16:39:00 GMT; 
secure; HttpOnly', TRUE, 200); // works
    setcookie('cookie2', 'foo2',); // works
    setcookie('cookie3', 'foo3', -3600); // works
    setcookie('cookie4', 'foo4', 3600); // segfaults

    echo '<pre>';
    print_r($_COOKIE);
?>


Expected result:
----------------
$_COOKIE array dumped to screen

Actual result:
--------------
Apache error log:
[Sun Aug 16 19:06:38 2009] [notice] child pid 22565 exit signal Segmentation 
fault (11)


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



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=49273&edit=1

Reply via email to