mirror of
https://github.com/curl/curl.git
synced 2026-04-22 08:52:12 +03:00
nss.c: Fixed warning: 'err' may be used uninitialized in this function
This commit is contained in:
parent
71813f5e46
commit
e6ba048701
1 changed files with 1 additions and 1 deletions
|
|
@ -1171,7 +1171,7 @@ static CURLcode nss_load_ca_certificates(struct connectdata *conn,
|
|||
|
||||
CURLcode Curl_nss_connect(struct connectdata *conn, int sockindex)
|
||||
{
|
||||
PRInt32 err;
|
||||
PRErrorCode err = 0;
|
||||
PRFileDesc *model = NULL;
|
||||
PRBool ssl2 = PR_FALSE;
|
||||
PRBool ssl3 = PR_FALSE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue