Fix compiler warning: local variable may be used without having been initialized.

This commit is contained in:
Yang Tse 2010-02-02 16:23:42 +00:00
parent 839b61c32a
commit e569ff959f
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ CURLcode Curl_wait_for_resolv(struct connectdata *conn,
{
struct thread_data *td = (struct thread_data*) conn->async.os_specific;
struct SessionHandle *data = conn->data;
CURLcode rc;
CURLcode rc = CURLE_OK;
DEBUGASSERT(conn && td);