dplayx: Remove unnecessary assigment (Coverity).
This commit is contained in:
parent
d762b284d8
commit
03f519db3e
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue