php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #36294 PHP crashes when exiting
Submitted: 2006-02-05 16:23 UTC Modified: 2006-02-13 01:00 UTC
Votes:2
Avg. Score:4.0 ± 1.0
Reproduced:1 of 1 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: ramesh25 at gmail dot com Assigned:
Status: No Feedback Package: Reproducible crash
PHP Version: 5.1.2 OS: NSK-TANDEM
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: ramesh25 at gmail dot com
New email:
PHP Version: OS:

 

 [2006-02-05 16:23 UTC] ramesh25 at gmail dot com
Description:
------------
PHP crashes when it exits

Reproduce code:
---------------
php -h

Expected result:
----------------
display command line options

Actual result:
--------------
#sapi/cli/php -h
Usage: php [options] [-f] <file> [--] [args...]
       php [options] -r <code> [--] [args...]
       php [options] [-B <begin_code>] -R <code> [-E <end_code>] [--] [args...]
       php [options] [-B <begin_code>] -F <file> [-E <end_code>] [--] [args...]
       php [options] -- [args...]
       php [options] -a

  -a               Run as interactive shell
  -c <path>|<file> Look for php.ini file in this directory
  -n               No php.ini file will be used
  -d foo[=bar]     Define INI entry foo with value 'bar'
  -e               Generate extended information for debugger/profiler
  -f <file>        Parse <file>.
  -h               This help
  -i               PHP information
  -l               Syntax check only (lint)
  -m               Show compiled in modules
  -r <code>        Run PHP <code> without using script tags <?..?>
  -B <begin_code>  Run PHP <begin_code> before processing input lines
  -R <code>        Run PHP <code> for every input line
  -F <file>        Parse and execute <file> for every input line
  -E <end_code>    Run PHP <end_code> after processing all input lines
  -H               Hide any passed arguments from external tools.
  -s               Display colour syntax highlighted source.
  -v               Version number
  -w               Display source with stripped comments and whitespace.
  -z <file>        Load Zend extension <file>.

  args...          Arguments passed to script. Use -- args when first argument
                   starts with - or script is read from stdin

  --rf <name>      Show information about function <name>.
  --rc <name>      Show information about class <name>.
  --re <name>      Show information about extension <name>.

\MRS010.$:1:442:104328200 - *** Run-time Error 034 ***
\MRS010.$:1:442:104328200 - Released space not allocated
\MRS010.$:1:442:104328200 - From zend_hash_del_key_or_index + 0x2E0 (UCr)
\MRS010.$:1:442:104328200 -      php_stream_filter_unregister_factory + 0x58 (UCr)
\MRS010.$:1:442:104328200 -      zm_shutdown_bz2 + 0x50 (UCr)
\MRS010.$:1:442:104328200 -      module_destructor + 0xB8 (UCr)
\MRS010.$:1:442:104328200 -      zend_hash_apply_deleter + 0x88 (UCr)
\MRS010.$:1:442:104328200 -      zend_hash_graceful_reverse_destroy + 0x4C (UCr)
\MRS010.$:1:442:104328200 -      zend_shutdown + 0x48 (UCr)
\MRS010.$:1:442:104328200 -      php_module_shutdown + 0x74 (UCr)
\MRS010.$:1:442:104328200 -      main + 0x1D88 (UCr)
\MRS010.$:1:442:104328200 -      _MAIN + 0x4C (UCr)
Unknown Signal #31
#





#sapi/cli/php -v
PHP 5.1.2 (cli) (built: Feb  5 2006 08:57:08)
Copyright (c) 1997-2006 The PHP Group
Zend Engine v2.1.0, Copyright (c) 1998-2006 Zend Technologies
\MRS010.$:1:441:104328712 - *** Run-time Error 034 ***
\MRS010.$:1:441:104328712 - Released space not allocated
\MRS010.$:1:441:104328712 - From zend_hash_del_key_or_index + 0x2E0 (UCr)
\MRS010.$:1:441:104328712 -      php_stream_filter_unregister_factory + 0x58 (UCr)
\MRS010.$:1:441:104328712 -      zm_shutdown_bz2 + 0x50 (UCr)
\MRS010.$:1:441:104328712 -      module_destructor + 0xB8 (UCr)
\MRS010.$:1:441:104328712 -      zend_hash_apply_deleter + 0x88 (UCr)
\MRS010.$:1:441:104328712 -      zend_hash_graceful_reverse_destroy + 0x4C (UCr)
\MRS010.$:1:441:104328712 -      zend_shutdown + 0x48 (UCr)
\MRS010.$:1:441:104328712 -      php_module_shutdown + 0x74 (UCr)
\MRS010.$:1:441:104328712 -      main + 0x1D88 (UCr)
\MRS010.$:1:441:104328712 -      _MAIN + 0x4C (UCr)
Unknown Signal #31
#


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-02-05 16:26 UTC] tony2001@php.net
"NSK-TANDEM"?
What OS is that?
 [2006-02-05 16:43 UTC] ramesh25 at gmail dot com
It is HP's Non Stop Kernel..
 [2006-02-05 16:49 UTC] tony2001@php.net
Is there some kind of GDB or different debugger?
 [2006-02-05 19:13 UTC] ramesh25 at gmail dot com
there is no gdb. we use a debugger called inspect.
 [2006-02-05 20:17 UTC] tony2001@php.net
Well, I doubt we'll be able to debug it without any information on a such rare platform.
 [2006-02-05 20:17 UTC] tony2001@php.net
Please try using this CVS snapshot:

  http://snaps.php.net/php5.1-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5.1-win32-latest.zip


 [2006-02-13 01:00 UTC] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Jun 29 06:01:30 2024 UTC