ID:               49273
 Comment by:       moisadoru at gmail dot com
 Reported By:      moisadoru at gmail dot com
 Status:           Open
 Bug Type:         HTTP related
 Operating System: Ubuntu linux 9.10alpha3 64bit
 PHP Version:      6SVN-2009-08-16 (snap)
 New Comment:

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


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

[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 http://bugs.php.net/?id=49273&edit=1

Reply via email to