Commit e569ff95 authored by Yang Tse's avatar Yang Tse
Browse files

Fix compiler warning: local variable may be used without having been initialized.
parent 839b61c3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);