From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dan Nicolaescu Newsgroups: gmane.emacs.devel Subject: Problem report #24 Date: Mon, 10 Apr 2006 11:50:06 -0700 Message-ID: <200604101850.k3AIo62n005320@scanner2.ics.uci.edu> Reply-To: emacs-devel@gnu.org NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1144695145 21546 80.91.229.2 (10 Apr 2006 18:52:25 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 10 Apr 2006 18:52:25 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Apr 10 20:52:24 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FT1UZ-0007dQ-BE for ged-emacs-devel@m.gmane.org; Mon, 10 Apr 2006 20:52:04 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FT1UX-0003n4-SU for ged-emacs-devel@m.gmane.org; Mon, 10 Apr 2006 14:52:01 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FT1UK-0003mR-UU for emacs-devel@gnu.org; Mon, 10 Apr 2006 14:51:48 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FT1UJ-0003m2-9g for emacs-devel@gnu.org; Mon, 10 Apr 2006 14:51:48 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FT1UJ-0003lz-4o for emacs-devel@gnu.org; Mon, 10 Apr 2006 14:51:47 -0400 Original-Received: from [128.195.1.36] (helo=scanner2.ics.uci.edu) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FT1Z0-0005SH-7C for emacs-devel@gnu.org; Mon, 10 Apr 2006 14:56:38 -0400 Original-Received: from vino.ics.uci.edu (vino.ics.uci.edu [128.195.11.198]) by scanner2.ics.uci.edu (8.13.6/8.13.5) with ESMTP id k3AIo62n005320 for ; Mon, 10 Apr 2006 11:50:06 -0700 (PDT) Original-To: emacs-devel@gnu.org Original-Lines: 33 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam (whitelisted), SpamAssassin (score=-1.44, required 5, autolearn=disabled, ALL_TRUSTED -1.44) X-ICS-MailScanner-From: dann@vino.ics.uci.edu X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:52602 Archived-At: CID: 24 Checker: FORWARD_NULL (help) File: emacs/src/xfaces.c Function: Fx_list_fonts Description: Variable "f" tracked as NULL was passed to a function that dereferences it. Event assign_zero: Variable "f" assigned value 0. Also see events: [var_deref_model] 3022 f = NULL; 3023 face = Qnil; 3024 } 3025 3026 /* Determine the width standard for comparison with the fonts we find. */ 3027 At conditional (1): "face == Qnil" taking false path 3028 if (NILP (face)) 3029 size = 0; 3030 else 3031 { 3032 /* This is of limited utility since it works with character 3033 widths. Keep it for compatibility. --gerd. */ Event var_deref_model: Variable "f" tracked as NULL was passed to a function that dereferences it. [model] Also see events: [assign_zero] 3034 int face_id = lookup_named_face (f, face, 0, 0); 3035 struct face *face = (face_id < 0 3036 ? NULL 3037 : FACE_FROM_ID (f, face_id)); 3038