php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #45677 Crash with stream_wrapper_register()
Submitted: 2008-08-01 15:39 UTC Modified: 2008-08-01 22:28 UTC
Votes:4
Avg. Score:4.5 ± 0.5
Reproduced:2 of 2 (100.0%)
Same Version:2 (100.0%)
Same OS:1 (50.0%)
From: alexey at belan dot su Assigned:
Status: Not a bug Package: Streams related
PHP Version: 5.2.6 OS: *
Private report: No CVE-ID: None
 [2008-08-01 15:39 UTC] alexey at belan dot su
Description:
------------
Attached code causes segmentation fail error in PHP.

Reproduce code:
---------------
<?php
class cABC{	
	public function url_stat($path, $flags){
		return stat($path);
	}
}

stream_wrapper_register ('abc', 'cABC');

var_dump(file_exists('abc://non/existant/scheme/url.file'));
?>

Expected result:
----------------
Standart PHP error (warning) expected.

Actual result:
--------------
Crash.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2008-08-01 22:28 UTC] johannes@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

It's an infinite recursion leading to a stack overflow.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 08:01:28 2024 UTC