dplayx: Remove unnecessary assigment (Coverity).

This commit is contained in:
Marcus Meissner 2013-04-19 22:47:58 +02:00 committed by Alexandre Julliard
parent d762b284d8
commit 03f519db3e
1 changed files with 1 additions and 1 deletions

View File

@ -1857,7 +1857,7 @@ static HRESULT WINAPI IDirectPlay4Impl_DeletePlayerFromGroup( IDirectPlay4 *ifac
return DPERR_INVALIDGROUP;
/* Find the player */
if ( ( plist = DP_FindPlayer( This, player ) ) == NULL )
if ( DP_FindPlayer( This, player ) == NULL )
return DPERR_INVALIDPLAYER;
/* Remove the player shortcut from the group */