[PATCH] inetcomm/internettransport.c : Remove an unneeded variable.

Amine Khaldi amine48rz at gmail.com
Wed Dec 16 11:57:38 CST 2009


---
 dlls/inetcomm/internettransport.c |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/dlls/inetcomm/internettransport.c b/dlls/inetcomm/internettransport.c
index af4772c..dcce0d9 100644
--- a/dlls/inetcomm/internettransport.c
+++ b/dlls/inetcomm/internettransport.c
@@ -167,14 +167,12 @@ HRESULT InternetTransport_HandsOffCallback(InternetTransport *This)
 
 HRESULT InternetTransport_DropConnection(InternetTransport *This)
 {
-    int ret;
-
     if (This->Status == IXP_DISCONNECTED)
         return IXP_E_NOT_CONNECTED;
 
-    ret = shutdown(This->Socket, SD_BOTH);
+    shutdown(This->Socket, SD_BOTH);
 
-    ret = closesocket(This->Socket);
+    closesocket(This->Socket);
 
     DestroyWindow(This->hwnd);
     This->hwnd = NULL;
-- 
1.6.5.1.1367.gcd48


--------------030306080400020709010807--



More information about the wine-patches mailing list