all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#16801: 24.3.50; emacs_backtrace.txt
@ 2014-02-18 21:49 Drew Adams
  2014-02-18 21:56 ` Juanma Barranquero
  0 siblings, 1 reply; 5+ messages in thread
From: Drew Adams @ 2014-02-18 21:49 UTC (permalink / raw)
  To: 16801

Exception 0xc0000005 at this address:
010e6b0a

Backtrace:
011fbd99
011fbe0a
010f043b
011149c4
0111499f
011149f8
010011e6
75f2fff7
77d674fb
77d29f41




In GNU Emacs 24.3.50.1 (i686-pc-mingw32)
 of 2014-02-11 on ODIEONE
Bzr revision: 116410 lekktu@gmail.com-20140211204823-l9l2s6tktfitq266
Windowing system distributor `Microsoft Corp.', version 6.1.7601
Configured using:
 `configure --prefix=/c/Devel/emacs/binary --enable-checking=yes,glyphs
 'CFLAGS=-O0 -g3' LDFLAGS=-Lc:/Devel/emacs/lib
 CPPFLAGS=-Ic:/Devel/emacs/include'





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#16801: 24.3.50; emacs_backtrace.txt
  2014-02-18 21:49 bug#16801: 24.3.50; emacs_backtrace.txt Drew Adams
@ 2014-02-18 21:56 ` Juanma Barranquero
  2014-02-19  3:41   ` Eli Zaretskii
  0 siblings, 1 reply; 5+ messages in thread
From: Juanma Barranquero @ 2014-02-18 21:56 UTC (permalink / raw)
  To: Drew Adams; +Cc: 16801

??
??:0
w32_backtrace at w32fns.c:8431
emacs_abort at w32fns.c:8463
terminate_due_to_signal at emacs.c:378
handle_fatal_signal at sysdep.c:1628
deliver_thread_signal at sysdep.c:1602
deliver_fatal_thread_signal at sysdep.c:1640
?? at crt1.c:0
??
??:0
??
??:0
??
??:0





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#16801: 24.3.50; emacs_backtrace.txt
  2014-02-18 21:56 ` Juanma Barranquero
@ 2014-02-19  3:41   ` Eli Zaretskii
  2014-02-19 12:56     ` Juanma Barranquero
  0 siblings, 1 reply; 5+ messages in thread
From: Eli Zaretskii @ 2014-02-19  3:41 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: 16801

> From: Juanma Barranquero <lekktu@gmail.com>
> Date: Tue, 18 Feb 2014 22:56:31 +0100
> Cc: 16801@debbugs.gnu.org
> 
> ??
> ??:0
> w32_backtrace at w32fns.c:8431
> emacs_abort at w32fns.c:8463
> terminate_due_to_signal at emacs.c:378
> handle_fatal_signal at sysdep.c:1628
> deliver_thread_signal at sysdep.c:1602
> deliver_fatal_thread_signal at sysdep.c:1640
> ?? at crt1.c:0

What about that 1st address:

> Exception 0xc0000005 at this address:
> 010e6b0a

?  That's the important piece of info.

Thanks.





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#16801: 24.3.50; emacs_backtrace.txt
  2014-02-19  3:41   ` Eli Zaretskii
@ 2014-02-19 12:56     ` Juanma Barranquero
  2014-02-19 16:48       ` Eli Zaretskii
  0 siblings, 1 reply; 5+ messages in thread
From: Juanma Barranquero @ 2014-02-19 12:56 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 16801

On Wed, Feb 19, 2014 at 4:41 AM, Eli Zaretskii <eliz@gnu.org> wrote:

> What about that 1st address:

Sorry, my bad.

This is the full output:

??
??:0
cache_face at xfaces.c:4377
??
??:0
??
??:0
w32_backtrace at w32fns.c:8431
emacs_abort at w32fns.c:8463
terminate_due_to_signal at emacs.c:378
handle_fatal_signal at sysdep.c:1628
deliver_thread_signal at sysdep.c:1602
deliver_fatal_thread_signal at sysdep.c:1640
?? at crt1.c:0
??
??:0
??
??:0
??
??:0





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#16801: 24.3.50; emacs_backtrace.txt
  2014-02-19 12:56     ` Juanma Barranquero
@ 2014-02-19 16:48       ` Eli Zaretskii
  0 siblings, 0 replies; 5+ messages in thread
From: Eli Zaretskii @ 2014-02-19 16:48 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: 16801-done

> From: Juanma Barranquero <lekktu@gmail.com>
> Date: Wed, 19 Feb 2014 13:56:02 +0100
> Cc: Drew Adams <drew.adams@oracle.com>, 16801@debbugs.gnu.org
> 
> On Wed, Feb 19, 2014 at 4:41 AM, Eli Zaretskii <eliz@gnu.org> wrote:
> 
> > What about that 1st address:
> 
> Sorry, my bad.

Nothing to be sorry about, and thanks for doing this.

> This is the full output:
> 
> ??
> ??:0
> cache_face at xfaces.c:4377

This is here:

  #ifdef GLYPH_DEBUG
    /* Check that FACE got a unique id.  */
    {
      int j, n;
      struct face *face1;

      for (j = n = 0; j < FACE_CACHE_BUCKETS_SIZE; ++j)
	for (face1 = c->buckets[j]; face1; face1 = face1->next)
	  if (face1->id == i)  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
	    ++n;

      eassert (n == 1);
    }
  #endif /* GLYPH_DEBUG */

So I guess 'face1' is an invalid (but non-NULL) pointer.  I have no
idea how this could happen (anyone?), but since this is a debugging
code, I don't thinks it's too important to figure that out.

Closing.





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-02-19 16:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-18 21:49 bug#16801: 24.3.50; emacs_backtrace.txt Drew Adams
2014-02-18 21:56 ` Juanma Barranquero
2014-02-19  3:41   ` Eli Zaretskii
2014-02-19 12:56     ` Juanma Barranquero
2014-02-19 16:48       ` Eli Zaretskii

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.