mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-28 09:13:08 +03:00
Only accept cookies from cookie-enabled transactions
svn path=/trunk/netsurf/; revision=2668
This commit is contained in:
parent
3d6331efd7
commit
83ef76adc7
@ -1174,7 +1174,8 @@ size_t fetch_curl_header(char *data, size_t size, size_t nmemb,
|
||||
f->cachedata.last_modified =
|
||||
curl_getdate(&data[i], NULL);
|
||||
}
|
||||
} else if (11 < size && strncasecmp(data, "Set-Cookie:", 11) == 0) {
|
||||
} else if (f->cookies && 11 < size &&
|
||||
strncasecmp(data, "Set-Cookie:", 11) == 0) {
|
||||
/* extract Set-Cookie header */
|
||||
SKIP_ST(11);
|
||||
urldb_set_cookie(&data[i], f->url);
|
||||
|
Loading…
Reference in New Issue
Block a user