Fix compiler warning: variable may be used uninitialized

This commit is contained in:
Yang Tse 2007-12-04 00:15:03 +00:00
parent 31e2409d6b
commit 8fa599215b
1 changed files with 1 additions and 1 deletions

View File

@ -1581,7 +1581,7 @@ static CURLcode servercert(struct connectdata *conn,
struct ssl_connect_data *connssl,
bool strict)
{
CURLcode retcode;
CURLcode retcode = CURLE_OK;
char *str;
long lerr;
ASN1_TIME *certdate;