FredGarcia / rolling-curl

Automatically exported from code.google.com/p/rolling-curl
0 stars 0 forks source link

sizeof($requests) -> sizeof($this->requests), line 169 #7

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Small mistype:

if ($i < sizeof($requests)) {
    $ch = curl_init();
    $options = $this->get_options($this->requests[$i++]); // note the
increment on i

    curl_setopt_array($ch,$options);
    ....................

Should be:

if ($i < sizeof($this->requests)) {
    $ch = curl_init();
    .........

Original issue reported on code.google.com by formulah...@gmail.com on 31 Mar 2010 at 8:25

GoogleCodeExporter commented 8 years ago
What file are you finding this in? Everything looks right here:
http://code.google.com/p/rolling-curl/source/browse/trunk/RollingCurl.php#294

Original comment by rhbec...@gmail.com on 1 Apr 2010 at 8:43

GoogleCodeExporter commented 8 years ago

Original comment by alexander.makarow on 12 May 2010 at 9:48