ID:               38693
 Updated by:       [EMAIL PROTECTED]
 Reported By:      waax at yahoo dot com
-Status:           Open
+Status:           Verified
 Bug Type:         cURL related
 Operating System: Windows XP SP2
 PHP Version:      5CVS-2006-09-02 (CVS)


Previous Comments:
------------------------------------------------------------------------

[2006-09-02 19:26:46] waax at yahoo dot com

Description:
------------
The scripts create a curl multi handle and then add a curl handle.

I expected to be able to use the curl handle after adding it to the
multi handle.

Instead, the curl handle becomes NULL.

I think it's related to the bug #38637
(http://bugs.php.net/bug.php?id=38637&edit=2) because it stopped
working after i took the latest cvs.

PHP Version => 5.2.0RC4-dev
CURL Information => libcurl/7.14.0 OpenSSL/0.9.8a zlib/1.2.3


Reproduce code:
---------------
<?php
$mh = curl_multi_init();
$ch = curl_init("http://yahoo.com";);
curl_multi_add_handle($mh, $ch);

var_dump($ch);
?>

Expected result:
----------------
resource(5) of type (curl)

Actual result:
--------------
NULL


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=38693&edit=1

Reply via email to