[PATCH 28/32] [libx11] Comparing array against NULL is not useful "&xkb->server->vmods != NULL"

walter harms wharms at bfs.de
Thu Jan 27 01:50:19 PST 2011



Am 27.01.2011 08:54, schrieb Erkki Seppälä:
> Removed superfluous comparison.
> 
> Signed-off-by: Erkki Seppälä <erkki.seppala at vincit.fi>
> ---
>  src/xkb/XKBMisc.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/src/xkb/XKBMisc.c b/src/xkb/XKBMisc.c
> index fc5ae5f..4aa1f73 100644
> --- a/src/xkb/XKBMisc.c
> +++ b/src/xkb/XKBMisc.c
> @@ -619,7 +619,7 @@ KeySym *	syms;
>  	XkbApplyCompatMapToKey(xkb,key,changes);
>      }
>  
> -    if ((xkb->server->vmods!=NULL)&&(xkb->map->modmap!=NULL)&&(changes)&&
> +    if ((xkb->map->modmap!=NULL)&&(changes)&&
>  	(changes->map.changed&(XkbVirtualModMapMask|XkbModifierMapMask))) {
>  	unsigned char		newVMods[XkbNumVirtualMods];
>  	register  unsigned 	bit,i;


I am not an expert on X11 coding style: but could someone detangle the if() here ?
something like:


if ( xkb->map->modmap!=NULL && changes )
	if ( (XkbVirtualModMapMask|XkbModifierMapMask) & changes->map.changed )

re,
 wh


More information about the xorg-devel mailing list