Commit cef74e26 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

inetcomm: Use InternetTransport_ChangeStatus in InternetTransport_DropConnection…

inetcomm: Use InternetTransport_ChangeStatus in InternetTransport_DropConnection so that the callback gets called.
parent a3a2789f
......@@ -171,13 +171,13 @@ HRESULT InternetTransport_DropConnection(InternetTransport *This)
ret = shutdown(This->Socket, SD_BOTH);
This->Status = IXP_DISCONNECTED;
ret = closesocket(This->Socket);
DestroyWindow(This->hwnd);
This->hwnd = NULL;
InternetTransport_ChangeStatus(This, IXP_DISCONNECTED);
return S_OK;
}
......
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