dplayx: Remove dead code (Clang)

Frédéric Delanoy frederic.delanoy at gmail.com
Sun Jul 3 13:28:29 CDT 2011


---
 dlls/dplayx/dplay.c |    6 ------
 1 files changed, 0 insertions(+), 6 deletions(-)

diff --git a/dlls/dplayx/dplay.c b/dlls/dplayx/dplay.c
index 0c33bb3..501b749 100644
--- a/dlls/dplayx/dplay.c
+++ b/dlls/dplayx/dplay.c
@@ -3391,8 +3391,6 @@ static void DP_CopySessionDesc( LPDPSESSIONDESC2 lpSessionDest,
       lstrcpyA( (LPSTR)lpStartOfFreeSpace,
                 lpSessionDest->u2.lpszPasswordA );
       lpSessionDest->u2.lpszPasswordA = (LPSTR)lpStartOfFreeSpace;
-      lpStartOfFreeSpace +=
-        lstrlenA( lpSessionDest->u2.lpszPasswordA ) + 1;
     }
   }
   else /* UNICODE */
@@ -3411,8 +3409,6 @@ static void DP_CopySessionDesc( LPDPSESSIONDESC2 lpSessionDest,
       lstrcpyW( (LPWSTR)lpStartOfFreeSpace,
                 lpSessionDest->u2.lpszPassword );
       lpSessionDest->u2.lpszPassword = (LPWSTR)lpStartOfFreeSpace;
-      lpStartOfFreeSpace += sizeof(WCHAR) *
-        ( lstrlenW( lpSessionDest->u2.lpszPassword ) + 1 );
     }
   }
 }
@@ -4593,8 +4589,6 @@ static HRESULT DP_SendEx
       ( DP_FindPlayer( This, idTo ) != NULL )
     )
   {
-    bValidDestination = TRUE;
-
     /* Have the service provider send this message */
     /* FIXME: Could optimize for local interface sends */
     return DP_SP_SendEx( This, dwFlags, lpData, dwDataSize, dwPriority,
-- 
1.7.5.4




More information about the wine-patches mailing list