From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: emacs 23.0.60.1 built today (11th feb 2008) crashes under Vista Date: Sun, 17 Feb 2008 11:46:42 -0500 Message-ID: References: Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1203266816 17499 80.91.229.12 (17 Feb 2008 16:46:56 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 17 Feb 2008 16:46:56 +0000 (UTC) Cc: emacs-devel@gnu.org To: Eric Lilja Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Feb 17 17:47:20 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 1JQmff-0006hZ-Cd for ged-emacs-devel@m.gmane.org; Sun, 17 Feb 2008 17:47:19 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JQmfA-00047i-P5 for ged-emacs-devel@m.gmane.org; Sun, 17 Feb 2008 11:46:48 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JQmf6-00046w-Fp for emacs-devel@gnu.org; Sun, 17 Feb 2008 11:46:44 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JQmf4-00045T-P9 for emacs-devel@gnu.org; Sun, 17 Feb 2008 11:46:43 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JQmf4-00045O-NR for emacs-devel@gnu.org; Sun, 17 Feb 2008 11:46:42 -0500 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JQmf4-0006i0-DO for emacs-devel@gnu.org; Sun, 17 Feb 2008 11:46:42 -0500 Original-Received: from eliz by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1JQmf4-0001y3-2T; Sun, 17 Feb 2008 11:46:42 -0500 In-reply-to: (message from Eric Lilja on Sun, 17 Feb 2008 16:47:16 +0100) X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) 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:89362 Archived-At: > From: Eric Lilja > Date: Sun, 17 Feb 2008 16:47:16 +0100 > > >> 409 return (s_pfn_Get_Sid_Sub_Authority_Count (pSid)); > >> 1: /x pSid = 0x82ea68 > > > > At this point, i.e. _before_ line 409, please type these commands, and > > tell me what they printed: > > > > p ((SID *)pSid)->Revision > > p ((SID *)pSid)->SubAuthorityCount > > p *((SID *)pSid)->SubAuthority@7 > > Hope I got this right: > (gdb) n > 405 if (s_pfn_Get_Sid_Sub_Authority_Count == NULL) > (gdb) p ((SID *)pSid)->Revision > $1 = 1 '\001' > (gdb) p ((SID *)pSid)->SubAuthorityCount > $2 = 5 '\005' > (gdb) p ((SID *)pSid)->SubAuthority@7 > $3 = {{21}, {2313625805}, {1149499212}, {3830963393}, {1000}, > {59246848}, {8579528}} > (gdb) Almost: you forgot the leading asterisk in the last command, right after "p": p *((SID *)pSid)->SubAuthority@7 Please tell me what this prints. The rest looks good: the information is there, it's just that Vista somehow refuses to produce it, or so it seems. Hmm... Thanks.