mirror of
https://github.com/curl/curl.git
synced 2026-08-05 13:36:14 +03:00
don't segfault when NULL is passed in to CURLOPT_USERPWD or
CURLOPT_PROXYUSERPWD
This commit is contained in:
parent
a9a4300a36
commit
54582bdce9
1 changed files with 3 additions and 0 deletions
|
|
@ -286,6 +286,9 @@ static CURLcode setstropt_userpwd(char *option, char **user_storage,
|
|||
char* separator;
|
||||
CURLcode result = CURLE_OK;
|
||||
|
||||
if(!option)
|
||||
return result;
|
||||
|
||||
separator = strchr(option, ':');
|
||||
if (separator != NULL) {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue