Home
last modified time | relevance | path

Searched refs:uri_path (Results 1 – 1 of 1) sorted by relevance

/external/curl/lib/
Dcookie.c152 char *uri_path = NULL; in pathmatch() local
163 uri_path = strdup(request_uri); in pathmatch()
164 if(!uri_path) in pathmatch()
166 pos = strchr(uri_path, '?'); in pathmatch()
171 if(0 == strlen(uri_path) || uri_path[0] != '/') { in pathmatch()
172 free(uri_path); in pathmatch()
173 uri_path = strdup("/"); in pathmatch()
174 if(!uri_path) in pathmatch()
187 uri_path_len = strlen(uri_path); in pathmatch()
195 if(strncmp(cookie_path, uri_path, cookie_path_len)) { in pathmatch()
[all …]