ports/134474: deskutils/wmpinboard segfaults on startup

Pavel Gorshkov gorshkov.pavel at gmail.com
Wed May 27 13:40:03 UTC 2009


The following reply was made to PR ports/134474; it has been noted by GNATS.

From: Pavel Gorshkov <gorshkov.pavel at gmail.com>
To: bug-followup at FreeBSD.org
Cc:  
Subject: Re: ports/134474: deskutils/wmpinboard segfaults on startup
Date: Wed, 27 May 2009 17:12:04 +0400

 --NzB8fVQJ5HfG6fxh
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 
 Fixed.  XCreateIC() was getting 4 zero bytes + 4 extra bytes of
 garbage instead of the NULL pointer needed to terminate the va_list.
 
 --NzB8fVQJ5HfG6fxh
 Content-Type: text/x-diff; charset=us-ascii
 Content-Disposition: attachment; filename="wmpinboard-missing-sentinel.diff"
 
 --- src/xmisc.c.orig	2009-05-27 17:03:25.000000000 +0400
 +++ src/xmisc.c	2009-05-27 16:42:40.000000000 +0400
 @@ -204,7 +204,7 @@
      return;
    }
  
 -  if (XGetIMValues(xim, XNQueryInputStyle, &xim_styles, 0) || !xim_styles) {
 +  if (XGetIMValues(xim, XNQueryInputStyle, &xim_styles, NULL) || !xim_styles) {
      XCloseIM(xim);
  #ifdef DEBUG_IC
      fprintf(stderr, "Input method doesn't support any style.\n");
 @@ -258,7 +258,7 @@
    }
  
    InputContext = XCreateIC(xim, XNInputStyle, input_style,
 -    XNClientWindow, win, XNFocusWindow, win, 0);
 +    XNClientWindow, win, XNFocusWindow, win, NULL);
  
    if (!InputContext) {
      XCloseIM(xim);
 
 --NzB8fVQJ5HfG6fxh--



More information about the freebsd-ports-bugs mailing list