php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #40514 Segmentation fault on session_register of undeclared variable
Submitted: 2007-02-17 08:18 UTC Modified: 2007-02-17 11:16 UTC
Votes:2
Avg. Score:4.5 ± 0.5
Reproduced:0 of 0 (0.0%)
From: steve at webdrive dot co dot nz Assigned:
Status: Closed Package: Session related
PHP Version: 4.4.5 OS: Debian Linux 3.1
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: steve at webdrive dot co dot nz
New email:
PHP Version: OS:

 

 [2007-02-17 08:18 UTC] steve at webdrive dot co dot nz
Description:
------------
The upgrade from PHP 4.4.4 to 4.4.5 caused a Segmentation Fault on a client's osCommerce site.  I've tracked the problem down to a session_register function call on a undeclared variable.

Reproduce code:
---------------
<?php
session_start();
// Uncomment the following line to prevent the Segmentation Fault
//$myvar = 1;
session_register("myvar");

echo "Hello World";
?>


Expected result:
----------------
Hello World and no "Segmentation Fault" in Apache's error log:

[Sat Feb 17 21:14:16 2007] [notice] child pid 20549 exit signal Segmentation fault (11)

Actual result:
--------------
0x080dbbc2 in php_add_session_var (name=0x850b75c "myvar", namelen=5)
    at /usr/src/apache-php/build/php-4.4.5/ext/session/session.c:287
287                     if ((Z_TYPE_PP(sym_global) == IS_ARRAY && Z_ARRVAL_PP(sym_global) == &EG(symbol_table)) || *sym_global == PS(http_session_vars)) {


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-02-17 11:16 UTC] mike@php.net
Fixed in CVS.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 17:01:29 2024 UTC