Skip to content

Commit

Permalink
workaround for #84
Browse files Browse the repository at this point in the history
  • Loading branch information
m6w6 committed Feb 26, 2019
1 parent a42effa commit 301589d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/php_http_client_curl.c
Original file line number Diff line number Diff line change
Expand Up @@ -2074,6 +2074,8 @@ static void php_http_client_curl_handler_clear(php_http_client_curl_handler_t *h
curl_easy_setopt(handler->handle, CURLOPT_DEBUGFUNCTION, NULL);
curl_easy_setopt(handler->handle, CURLOPT_COOKIELIST, "FLUSH");
curl_easy_setopt(handler->handle, CURLOPT_SHARE, NULL);
/* see gh issue #84 */
curl_easy_setopt(handler->handle, CURLOPT_COOKIEJAR, NULL);
}

static void php_http_client_curl_handler_dtor(php_http_client_curl_handler_t *handler)
Expand Down

0 comments on commit 301589d

Please sign in to comment.