Close cURL handle before recursing, so that cookie file is flushed

This commit is contained in:
Matthew Exon 2014-09-14 05:00:33 +02:00 committed by Matthew Exon
parent 135869fd1c
commit 2bb8b77123
1 changed files with 1 additions and 1 deletions

View File

@ -71,6 +71,7 @@ function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_
$base = $s;
$curl_info = @curl_getinfo($ch);
@curl_close($ch);
$http_code = $curl_info['http_code'];
logger('fetch_url '.$url.': '.$http_code." ".$s, LOGGER_DATA);
$header = '';
@ -110,7 +111,6 @@ function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_
$body = substr($s,strlen($header));
$a->set_curl_headers($header);
@curl_close($ch);
$a->save_timestamp($stamp1, "network");