php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #10541 curl leaks fds on failure
Submitted: 2001-04-28 16:56 UTC Modified: 2001-04-28 17:47 UTC
From: stig@php.net Assigned:
Status: Closed Package: cURL related
PHP Version: 4.0.4pl1 OS: RedHat 7.0
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: stig@php.net
New email:
PHP Version: OS:

 

 [2001-04-28 16:56 UTC] stig@php.net
curl leaks file descriptors when a curl request fails or is aborted.  How to reproduce:

1. Put a file called "blah.txt" with some plain text in docroot.

2. curltest.php:

<?php
header("Content-type: text/plain");

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://$SERVER_NAME/blah.txt");
curl_exec($ch);
curl_close($ch);

?>

3. run httpd -X and find the process id

4. open curltest.php in your browser and hit Escape (it will hang because the Apache process is busy processing the PHP script)

5. (on Linux) ls -l /proc/<httpd-pid>/fs

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-04-28 17:47 UTC] sterling@php.net
fixed in cvs, thanks for the report.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Apr 28 05:01:30 2024 UTC