curl_easy_duphandle() now properly clones the cookie option

- patch by T. Bharath
This commit is contained in:
Daniel Stenberg 2001-10-19 11:57:50 +00:00
parent 83da58ce91
commit 74d5a6fb3b
1 changed files with 6 additions and 0 deletions

View File

@ -293,6 +293,12 @@ CURL *curl_easy_duphandle(CURL *incurl)
outcurl->progress.flags = data->progress.flags;
outcurl->progress.callback = data->progress.callback;
if(data->cookies)
/* If cookies are enabled in the parent handle, we enable them
in the clone as well! */
outcurl->cookies = Curl_cookie_init(data->cookies->filename,
outcurl->cookies);
/* duplicate all values in 'change' */
if(data->change.url) {
outcurl->change.url = strdup(data->change.url);