From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Chong Yidong Newsgroups: gmane.emacs.devel Subject: Re: Memory leak in keyboard variables? Date: Mon, 15 Dec 2008 22:33:51 -0500 Message-ID: <87oczckd40.fsf@cyd.mit.edu> References: <964372.27721.qm@web83201.mail.mud.yahoo.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1229398443 30853 80.91.229.12 (16 Dec 2008 03:34:03 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 16 Dec 2008 03:34:03 +0000 (UTC) Cc: emacs-devel@gnu.org, Kenichi Handa To: pandyacus@sbcglobal.net Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Dec 16 04:35:07 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LCQiA-0002Ft-7k for ged-emacs-devel@m.gmane.org; Tue, 16 Dec 2008 04:35:06 +0100 Original-Received: from localhost ([127.0.0.1]:37541 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LCQgy-0008UD-9h for ged-emacs-devel@m.gmane.org; Mon, 15 Dec 2008 22:33:52 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LCQgt-0008S4-CB for emacs-devel@gnu.org; Mon, 15 Dec 2008 22:33:47 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LCQgr-0008Q9-U0 for emacs-devel@gnu.org; Mon, 15 Dec 2008 22:33:46 -0500 Original-Received: from [199.232.76.173] (port=53253 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LCQgr-0008Pn-LM for emacs-devel@gnu.org; Mon, 15 Dec 2008 22:33:45 -0500 Original-Received: from cyd.mit.edu ([18.115.2.24]:59030) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LCQgr-0004jP-DS for emacs-devel@gnu.org; Mon, 15 Dec 2008 22:33:45 -0500 Original-Received: by cyd.mit.edu (Postfix, from userid 1000) id BEFEB57E197; Mon, 15 Dec 2008 22:33:51 -0500 (EST) In-Reply-To: <964372.27721.qm@web83201.mail.mud.yahoo.com> (Chetan Pandya's message of "Mon, 15 Dec 2008 18:14:20 -0800 (PST)") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. 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:106950 Archived-At: Chetan Pandya writes: > Although not related, spotted while looking at the code in font.c: > font_update_drivers > > for (list = f->font_driver_list; list; list = list->next) > if (! list->on) > - list_table[i] = list; > + list_table[i++] = list; > list_table[i] = NULL; I've checked in the fix, thank you.