Tiago Vignatti wrote:
> Signed-off-by: Tiago Vignatti <[email protected]>
> ---
>  xkb/xkbEvents.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/xkb/xkbEvents.c b/xkb/xkbEvents.c
> index 33741e9..c7f6a66 100644
> --- a/xkb/xkbEvents.c
> +++ b/xkb/xkbEvents.c
> @@ -1042,8 +1042,8 @@ XkbInterestPtr  interest;
>       interest = interest->next;
>      }
>      interest = xalloc(sizeof(XkbInterestRec));
> -    bzero(interest,sizeof(XkbInterestRec));
>      if (interest) {
> +     bzero(interest,sizeof(XkbInterestRec));

or:
-      interest = xalloc(sizeof(XkbInterestRec));
-      bzero(interest,sizeof(XkbInterestRec));
+      interest = xcalloc(1, sizeof(XkbInterestRec));

-- 
        -Alan Coopersmith-        [email protected]
         Oracle Solaris Platform Engineering: X Window System

_______________________________________________
[email protected]: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel

Reply via email to