php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #1493 multiple fopen()'s fail when opening URLs
Submitted: 1999-06-04 13:07 UTC Modified: 1999-06-05 05:34 UTC
From: eric at ipass dot net Assigned:
Status: Closed Package: Other
PHP Version: 3.0.8 OS: Solaris 2.6
Private report: No CVE-ID: None
 [1999-06-04 13:07 UTC] eric at ipass dot net
The following code does not work:

$f = fopen("http://somewhere.blah.com/", "r");
fclose($f);
$f2 = fopen("http://somewhere.blah.com/", "r");
fclose($f2);

However, the following does work:

$f = fopen("http://somewhere.blah.com/", "r");
$f2 = fopen("http://somewhere.blah.com/", "r");

We have applied the fopen_wrappers.c patch.  

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [1999-06-05 05:34 UTC] sas at cvs dot php dot net
fixed in CVS - please wait for the upcoming PHP 3.0.9
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Nov 01 01:01:28 2024 UTC