Commit 08e4846f authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

wininet: Don't send INTERNET_STATUS_REQUEST_COMPLETE notification from FTP_Connect.

parent 19b01f2f
......@@ -2477,16 +2477,6 @@ lerror:
handle = NULL;
}
if (hIC->hdr.dwFlags & INTERNET_FLAG_ASYNC)
{
INTERNET_ASYNC_RESULT iar;
iar.dwResult = bSuccess ? (DWORD_PTR)lpwfs : 0;
iar.dwError = bSuccess ? ERROR_SUCCESS : INTERNET_GetLastError();
SendAsyncCallback(&hIC->hdr, dwContext, INTERNET_STATUS_REQUEST_COMPLETE,
&iar, sizeof(INTERNET_ASYNC_RESULT));
}
return handle;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment