GNU bug report logs - #77478
Fixes a crash in the Haiku font driver for daemon mode

Previous Next

Package: emacs;

Reported by: Kyle Ambroff-Kao <kyle <at> ambroffkao.com>

Date: Thu, 3 Apr 2025 06:56:01 UTC

Severity: normal

Tags: patch

Merged with 77479

Done: Po Lu <luangruo <at> yahoo.com>

To reply to this bug, email your comments to 77478 AT debbugs.gnu.org.
There is no need to reopen the bug first.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gnu-emacs <at> gnu.org:
bug#77478; Package emacs. (Thu, 03 Apr 2025 06:56:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Kyle Ambroff-Kao <kyle <at> ambroffkao.com>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Thu, 03 Apr 2025 06:56:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Kyle Ambroff-Kao <kyle <at> ambroffkao.com>
To: bug-gnu-emacs <at> gnu.org
Cc: Kyle Ambroff-Kao <kyle <at> ambroffkao.com>
Subject: Fixes a crash in the Haiku font driver for daemon mode
Date: Wed, 02 Apr 2025 23:33:54 -0700
[Message part 1 (text/plain, inline)]
Tags: patch

Fix use-after-free bug in the Haiku font driver

* src/haikufont.c: Set objects freed with haikufont_close to NULL so
  they will not be reused, which seems to happen in daemon mode when all
  frames have been closed and fonts are garbage collected.

In GNU Emacs 30.1 (build 2, amd64-portbld-freebsd15.0, GTK+ Version
3.24.48, cairo version 1.18.2)
System Description: 15.0-CURRENT

Configured using:
 'configure --disable-build-details --localstatedir=/var --without-gconf
 --without-libsystemd --without-selinux --with-x --enable-acl
 --with-cairo --with-dbus --with-gif --with-gnutls --with-gsettings
 --with-x-toolkit=gtk3 --with-harfbuzz --with-jpeg
 --with-file-notification=kqueue --with-lcms2 --without-m17n-flt
 --without-imagemagick --with-mailutils --with-modules
 --with-native-compilation=aot --with-sound=oss --without-libotf
 --without-pgtk --with-png --with-toolkit-scroll-bars --with-sqlite3
 --with-rsvg --with-threads --with-tiff --with-tree-sitter --with-webp
 --without-xft --with-xim --with-xml2 --with-xpm --without-xwidgets
 --x-libraries=/usr/local/lib --x-includes=/usr/local/include
 --prefix=/usr/local --mandir=/usr/local/share/man
 --disable-silent-rules --infodir=/usr/local/share/emacs/info/
 --build=amd64-portbld-freebsd15.0 'CFLAGS=-O2 -pipe
 -fstack-protector-strong -Wl,-rpath=/usr/local/lib/gcc13 -isystem
 /usr/local/include -fno-strict-aliasing ' 'CPPFLAGS=-isystem
 /usr/local/include' 'LDFLAGS= -fstack-protector-strong
 -Wl,-rpath=/usr/local/lib/gcc13 -L/usr/local/lib/gcc13 -L/usr/local/lib
 ''

[haiku-font-double-free.diff (text/patch, attachment)]

Merged 77478 77479. Request was from Michael Albinus <michael.albinus <at> gmx.de> to control <at> debbugs.gnu.org. (Thu, 03 Apr 2025 08:04:02 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#77478; Package emacs. (Thu, 03 Apr 2025 11:35:02 GMT) Full text and rfc822 format available.

Message #10 received at 77478 <at> debbugs.gnu.org (full text, mbox):

From: "Kyle Ambroff-Kao" <kyle <at> ambroffkao.com>
To: 77478 <at> debbugs.gnu.org
Subject: Details
Date: Thu, 03 Apr 2025 07:10:53 +0000
This fixes double-free bug in Emacs daemon mode on Haiku. To reproduce:

1. Start emacs with "emacs --daemon"
2. Create a new frame with "emacsclient -c" and then close it.
3. Create a new frame with "emacsclient -c"

Step 3 will cause the Emacs daemon to crash.

  KERN: debug_server: Thread 3616 entered the debugger: Debugger call:
  `tried to free 0xb960bc9fd0 which points at page 232 which is not an
  allocation first page'

The backtrace from Emacs:
   heap_free(void*) + 0x35 
   BFont_close + 0x4d 
   haikufont_close(font*) + 0x29 (/Code/emacs/src/haikufont.c:893)
   sweep_vectors(void) + 0x1af (/Code/emacs/src/alloc.c:3242)
   garbage_collect(void) + 0x7b3 (/Code/emacs/src/alloc.c:7247)
   Ffuncall(ptrdiff_t, Lisp_Object*) + 0x194 (/Code/emacs/src/eval.c:3084)
   internal_condition_case_n(*, ptrdiff_t, Lisp_Object*, Lisp_Object, *)
   + 0x6c (/Code/emacs/src/eval.c:1699)
   safe_funcall(ptrdiff_t, Lisp_Object*) + 0x50 (/Code/emacs/src/eval.c:3114)
   map_keymap_canonical(Lisp_Object,map_keymap_function_t,Lisp_Object,void*)
   + 0x2b (/Code/emacs/src/keymap.c:608)
   ...

It appears that the BFont has already been closed. I think that the
driver is holding on to the pointer to the freed BFont
(into->be_font). This patch addresses this by setting be_font to NULL so
that this pointer will not be freed again.

The same thing applies to info->metrics and info->glyphs, since just
making this change to be_font wasn't enough to avoid crashes.

With this patch I can open and close as many frames as I want without
crashing.

I don't totally understand the interactions here, and I see there are
similar bugs in other font drivers with different workarounds. For
example, in Bug#16069 which I found from xfont.c:xfont_close, it seems
like there is an attempt to just not free the fonts when GC is invoked.

I think the solution in this patch seems a little simpler, but possibly
means that the fonts are initialized every time the frame count goes
from 0 to 1 or more instead of just once for the life of the daemon.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#77478; Package emacs. (Sat, 12 Apr 2025 11:36:03 GMT) Full text and rfc822 format available.

Message #13 received at 77478 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: "Kyle Ambroff-Kao" <kyle <at> ambroffkao.com>,
 Po Lu <luangruo <at> yahoo.com>
Cc: 77478 <at> debbugs.gnu.org
Subject: Re: bug#77478: Details
Date: Sat, 12 Apr 2025 14:35:17 +0300
> Date: Thu, 03 Apr 2025 07:10:53 +0000
> From: "Kyle Ambroff-Kao" <kyle <at> ambroffkao.com>
> 
> This fixes double-free bug in Emacs daemon mode on Haiku. To reproduce:
> 
> 1. Start emacs with "emacs --daemon"
> 2. Create a new frame with "emacsclient -c" and then close it.
> 3. Create a new frame with "emacsclient -c"
> 
> Step 3 will cause the Emacs daemon to crash.
> 
>   KERN: debug_server: Thread 3616 entered the debugger: Debugger call:
>   `tried to free 0xb960bc9fd0 which points at page 232 which is not an
>   allocation first page'
> 
> The backtrace from Emacs:
>    heap_free(void*) + 0x35 
>    BFont_close + 0x4d 
>    haikufont_close(font*) + 0x29 (/Code/emacs/src/haikufont.c:893)
>    sweep_vectors(void) + 0x1af (/Code/emacs/src/alloc.c:3242)
>    garbage_collect(void) + 0x7b3 (/Code/emacs/src/alloc.c:7247)
>    Ffuncall(ptrdiff_t, Lisp_Object*) + 0x194 (/Code/emacs/src/eval.c:3084)
>    internal_condition_case_n(*, ptrdiff_t, Lisp_Object*, Lisp_Object, *)
>    + 0x6c (/Code/emacs/src/eval.c:1699)
>    safe_funcall(ptrdiff_t, Lisp_Object*) + 0x50 (/Code/emacs/src/eval.c:3114)
>    map_keymap_canonical(Lisp_Object,map_keymap_function_t,Lisp_Object,void*)
>    + 0x2b (/Code/emacs/src/keymap.c:608)
>    ...
> 
> It appears that the BFont has already been closed. I think that the
> driver is holding on to the pointer to the freed BFont
> (into->be_font). This patch addresses this by setting be_font to NULL so
> that this pointer will not be freed again.
> 
> The same thing applies to info->metrics and info->glyphs, since just
> making this change to be_font wasn't enough to avoid crashes.
> 
> With this patch I can open and close as many frames as I want without
> crashing.
> 
> I don't totally understand the interactions here, and I see there are
> similar bugs in other font drivers with different workarounds. For
> example, in Bug#16069 which I found from xfont.c:xfont_close, it seems
> like there is an attempt to just not free the fonts when GC is invoked.
> 
> I think the solution in this patch seems a little simpler, but possibly
> means that the fonts are initialized every time the frame count goes
> from 0 to 1 or more instead of just once for the life of the daemon.

Po Lu, any suggestions or comments?




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#77478; Package emacs. (Sat, 26 Apr 2025 11:36:02 GMT) Full text and rfc822 format available.

Message #16 received at 77478 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: luangruo <at> yahoo.com
Cc: kyle <at> ambroffkao.com, 77478 <at> debbugs.gnu.org
Subject: Re: bug#77478: Fixes a crash in the Haiku font driver for daemon mode
Date: Sat, 26 Apr 2025 14:34:52 +0300
Ping!  Po Lu, any suggestions or comments?

> Cc: 77478 <at> debbugs.gnu.org
> Date: Sat, 12 Apr 2025 14:35:17 +0300
> From: Eli Zaretskii <eliz <at> gnu.org>
> 
> > Date: Thu, 03 Apr 2025 07:10:53 +0000
> > From: "Kyle Ambroff-Kao" <kyle <at> ambroffkao.com>
> > 
> > This fixes double-free bug in Emacs daemon mode on Haiku. To reproduce:
> > 
> > 1. Start emacs with "emacs --daemon"
> > 2. Create a new frame with "emacsclient -c" and then close it.
> > 3. Create a new frame with "emacsclient -c"
> > 
> > Step 3 will cause the Emacs daemon to crash.
> > 
> >   KERN: debug_server: Thread 3616 entered the debugger: Debugger call:
> >   `tried to free 0xb960bc9fd0 which points at page 232 which is not an
> >   allocation first page'
> > 
> > The backtrace from Emacs:
> >    heap_free(void*) + 0x35 
> >    BFont_close + 0x4d 
> >    haikufont_close(font*) + 0x29 (/Code/emacs/src/haikufont.c:893)
> >    sweep_vectors(void) + 0x1af (/Code/emacs/src/alloc.c:3242)
> >    garbage_collect(void) + 0x7b3 (/Code/emacs/src/alloc.c:7247)
> >    Ffuncall(ptrdiff_t, Lisp_Object*) + 0x194 (/Code/emacs/src/eval.c:3084)
> >    internal_condition_case_n(*, ptrdiff_t, Lisp_Object*, Lisp_Object, *)
> >    + 0x6c (/Code/emacs/src/eval.c:1699)
> >    safe_funcall(ptrdiff_t, Lisp_Object*) + 0x50 (/Code/emacs/src/eval.c:3114)
> >    map_keymap_canonical(Lisp_Object,map_keymap_function_t,Lisp_Object,void*)
> >    + 0x2b (/Code/emacs/src/keymap.c:608)
> >    ...
> > 
> > It appears that the BFont has already been closed. I think that the
> > driver is holding on to the pointer to the freed BFont
> > (into->be_font). This patch addresses this by setting be_font to NULL so
> > that this pointer will not be freed again.
> > 
> > The same thing applies to info->metrics and info->glyphs, since just
> > making this change to be_font wasn't enough to avoid crashes.
> > 
> > With this patch I can open and close as many frames as I want without
> > crashing.
> > 
> > I don't totally understand the interactions here, and I see there are
> > similar bugs in other font drivers with different workarounds. For
> > example, in Bug#16069 which I found from xfont.c:xfont_close, it seems
> > like there is an attempt to just not free the fonts when GC is invoked.
> > 
> > I think the solution in this patch seems a little simpler, but possibly
> > means that the fonts are initialized every time the frame count goes
> > from 0 to 1 or more instead of just once for the life of the daemon.
> 
> Po Lu, any suggestions or comments?
> 
> 
> 
> 




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#77478; Package emacs. (Sat, 10 May 2025 09:31:02 GMT) Full text and rfc822 format available.

Message #19 received at 77478 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: luangruo <at> yahoo.com
Cc: kyle <at> ambroffkao.com, 77478 <at> debbugs.gnu.org
Subject: Re: bug#77478: Fixes a crash in the Haiku font driver for daemon mode
Date: Sat, 10 May 2025 12:30:03 +0300
Ping! Ping!  Po Lu, please respond.

> Cc: kyle <at> ambroffkao.com, 77478 <at> debbugs.gnu.org
> Date: Sat, 26 Apr 2025 14:34:52 +0300
> From: Eli Zaretskii <eliz <at> gnu.org>
> 
> Ping!  Po Lu, any suggestions or comments?
> 
> > Cc: 77478 <at> debbugs.gnu.org
> > Date: Sat, 12 Apr 2025 14:35:17 +0300
> > From: Eli Zaretskii <eliz <at> gnu.org>
> > 
> > > Date: Thu, 03 Apr 2025 07:10:53 +0000
> > > From: "Kyle Ambroff-Kao" <kyle <at> ambroffkao.com>
> > > 
> > > This fixes double-free bug in Emacs daemon mode on Haiku. To reproduce:
> > > 
> > > 1. Start emacs with "emacs --daemon"
> > > 2. Create a new frame with "emacsclient -c" and then close it.
> > > 3. Create a new frame with "emacsclient -c"
> > > 
> > > Step 3 will cause the Emacs daemon to crash.
> > > 
> > >   KERN: debug_server: Thread 3616 entered the debugger: Debugger call:
> > >   `tried to free 0xb960bc9fd0 which points at page 232 which is not an
> > >   allocation first page'
> > > 
> > > The backtrace from Emacs:
> > >    heap_free(void*) + 0x35 
> > >    BFont_close + 0x4d 
> > >    haikufont_close(font*) + 0x29 (/Code/emacs/src/haikufont.c:893)
> > >    sweep_vectors(void) + 0x1af (/Code/emacs/src/alloc.c:3242)
> > >    garbage_collect(void) + 0x7b3 (/Code/emacs/src/alloc.c:7247)
> > >    Ffuncall(ptrdiff_t, Lisp_Object*) + 0x194 (/Code/emacs/src/eval.c:3084)
> > >    internal_condition_case_n(*, ptrdiff_t, Lisp_Object*, Lisp_Object, *)
> > >    + 0x6c (/Code/emacs/src/eval.c:1699)
> > >    safe_funcall(ptrdiff_t, Lisp_Object*) + 0x50 (/Code/emacs/src/eval.c:3114)
> > >    map_keymap_canonical(Lisp_Object,map_keymap_function_t,Lisp_Object,void*)
> > >    + 0x2b (/Code/emacs/src/keymap.c:608)
> > >    ...
> > > 
> > > It appears that the BFont has already been closed. I think that the
> > > driver is holding on to the pointer to the freed BFont
> > > (into->be_font). This patch addresses this by setting be_font to NULL so
> > > that this pointer will not be freed again.
> > > 
> > > The same thing applies to info->metrics and info->glyphs, since just
> > > making this change to be_font wasn't enough to avoid crashes.
> > > 
> > > With this patch I can open and close as many frames as I want without
> > > crashing.
> > > 
> > > I don't totally understand the interactions here, and I see there are
> > > similar bugs in other font drivers with different workarounds. For
> > > example, in Bug#16069 which I found from xfont.c:xfont_close, it seems
> > > like there is an attempt to just not free the fonts when GC is invoked.
> > > 
> > > I think the solution in this patch seems a little simpler, but possibly
> > > means that the fonts are initialized every time the frame count goes
> > > from 0 to 1 or more instead of just once for the life of the daemon.
> > 
> > Po Lu, any suggestions or comments?
> > 
> > 
> > 
> > 
> 
> 
> 
> 




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#77478; Package emacs. (Sat, 10 May 2025 13:12:02 GMT) Full text and rfc822 format available.

Message #22 received at 77478 <at> debbugs.gnu.org (full text, mbox):

From: Po Lu <luangruo <at> yahoo.com>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: kyle <at> ambroffkao.com, 77478 <at> debbugs.gnu.org
Subject: Re: bug#77478: Fixes a crash in the Haiku font driver for daemon mode
Date: Sat, 10 May 2025 21:10:59 +0800
Eli Zaretskii <eliz <at> gnu.org> writes:

> Ping! Ping!  Po Lu, please respond.
>
>> Cc: kyle <at> ambroffkao.com, 77478 <at> debbugs.gnu.org
>> Date: Sat, 26 Apr 2025 14:34:52 +0300
>> From: Eli Zaretskii <eliz <at> gnu.org>
>> 
>> Ping!  Po Lu, any suggestions or comments?
>> 
>> > Cc: 77478 <at> debbugs.gnu.org
>> > Date: Sat, 12 Apr 2025 14:35:17 +0300
>> > From: Eli Zaretskii <eliz <at> gnu.org>
>> > 
>> > > Date: Thu, 03 Apr 2025 07:10:53 +0000
>> > > From: "Kyle Ambroff-Kao" <kyle <at> ambroffkao.com>
>> > > 
>> > > This fixes double-free bug in Emacs daemon mode on Haiku. To reproduce:
>> > > 
>> > > 1. Start emacs with "emacs --daemon"
>> > > 2. Create a new frame with "emacsclient -c" and then close it.
>> > > 3. Create a new frame with "emacsclient -c"
>> > > 
>> > > Step 3 will cause the Emacs daemon to crash.
>> > > 
>> > >   KERN: debug_server: Thread 3616 entered the debugger: Debugger call:
>> > >   `tried to free 0xb960bc9fd0 which points at page 232 which is not an
>> > >   allocation first page'
>> > > 
>> > > The backtrace from Emacs:
>> > >    heap_free(void*) + 0x35 
>> > >    BFont_close + 0x4d 
>> > >    haikufont_close(font*) + 0x29 (/Code/emacs/src/haikufont.c:893)
>> > >    sweep_vectors(void) + 0x1af (/Code/emacs/src/alloc.c:3242)
>> > >    garbage_collect(void) + 0x7b3 (/Code/emacs/src/alloc.c:7247)
>> > >    Ffuncall(ptrdiff_t, Lisp_Object*) + 0x194 (/Code/emacs/src/eval.c:3084)
>> > >    internal_condition_case_n(*, ptrdiff_t, Lisp_Object*, Lisp_Object, *)
>> > >    + 0x6c (/Code/emacs/src/eval.c:1699)
>> > >    safe_funcall(ptrdiff_t, Lisp_Object*) + 0x50 (/Code/emacs/src/eval.c:3114)
>> > >    map_keymap_canonical(Lisp_Object,map_keymap_function_t,Lisp_Object,void*)
>> > >    + 0x2b (/Code/emacs/src/keymap.c:608)
>> > >    ...
>> > > 
>> > > It appears that the BFont has already been closed. I think that the
>> > > driver is holding on to the pointer to the freed BFont
>> > > (into->be_font). This patch addresses this by setting be_font to NULL so
>> > > that this pointer will not be freed again.
>> > > 
>> > > The same thing applies to info->metrics and info->glyphs, since just
>> > > making this change to be_font wasn't enough to avoid crashes.
>> > > 
>> > > With this patch I can open and close as many frames as I want without
>> > > crashing.
>> > > 
>> > > I don't totally understand the interactions here, and I see there are
>> > > similar bugs in other font drivers with different workarounds. For
>> > > example, in Bug#16069 which I found from xfont.c:xfont_close, it seems
>> > > like there is an attempt to just not free the fonts when GC is invoked.
>> > > 
>> > > I think the solution in this patch seems a little simpler, but possibly
>> > > means that the fonts are initialized every time the frame count goes
>> > > from 0 to 1 or more instead of just once for the life of the daemon.
>> > 
>> > Po Lu, any suggestions or comments?

Sorry for the very belated response.  I'll get around to reading these
bug reports in roughly a week--but superficially the OP's analysis
appears correct.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#77478; Package emacs. (Sun, 18 May 2025 00:48:01 GMT) Full text and rfc822 format available.

Message #25 received at 77478 <at> debbugs.gnu.org (full text, mbox):

From: Po Lu <luangruo <at> yahoo.com>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: kyle <at> ambroffkao.com, 77478 <at> debbugs.gnu.org
Subject: Re: bug#77478: Fixes a crash in the Haiku font driver for daemon mode
Date: Sun, 18 May 2025 08:47:03 +0800
Eli Zaretskii <eliz <at> gnu.org> writes:

>> > > This fixes double-free bug in Emacs daemon mode on Haiku. To reproduce:
>> > > 
>> > > 1. Start emacs with "emacs --daemon"
>> > > 2. Create a new frame with "emacsclient -c" and then close it.
>> > > 3. Create a new frame with "emacsclient -c"

I think I've fixed this slightly differently.  Please test and ack,
thanks.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#77478; Package emacs. (Sat, 24 May 2025 09:19:02 GMT) Full text and rfc822 format available.

Message #28 received at 77478 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: kyle <at> ambroffkao.com, Po Lu <luangruo <at> yahoo.com>
Cc: 77478 <at> debbugs.gnu.org
Subject: Re: bug#77478: Fixes a crash in the Haiku font driver for daemon mode
Date: Sat, 24 May 2025 12:18:41 +0300
> From: Po Lu <luangruo <at> yahoo.com>
> Cc: kyle <at> ambroffkao.com,  77478 <at> debbugs.gnu.org
> Date: Sun, 18 May 2025 08:47:03 +0800
> 
> Eli Zaretskii <eliz <at> gnu.org> writes:
> 
> >> > > This fixes double-free bug in Emacs daemon mode on Haiku. To reproduce:
> >> > > 
> >> > > 1. Start emacs with "emacs --daemon"
> >> > > 2. Create a new frame with "emacsclient -c" and then close it.
> >> > > 3. Create a new frame with "emacsclient -c"
> 
> I think I've fixed this slightly differently.  Please test and ack,
> thanks.

Kyle, could you please test the fix and report back?




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#77478; Package emacs. (Wed, 28 May 2025 06:48:02 GMT) Full text and rfc822 format available.

Message #31 received at 77478 <at> debbugs.gnu.org (full text, mbox):

From: "Kyle Ambroff-Kao" <kyle <at> ambroffkao.com>
To: "Eli Zaretskii" <eliz <at> gnu.org>, "Po Lu" <luangruo <at> yahoo.com>
Cc: 77478 <at> debbugs.gnu.org
Subject: Re: bug#77478: Fixes a crash in the Haiku font driver for daemon mode
Date: Tue, 27 May 2025 22:22:19 -0700
On Sat, May 24, 2025, at 2:18 AM, Eli Zaretskii wrote:
> > From: Po Lu <luangruo <at> yahoo.com>
> > Cc: kyle <at> ambroffkao.com,  77478 <at> debbugs.gnu.org
> > Date: Sun, 18 May 2025 08:47:03 +0800
> > 
> > Eli Zaretskii <eliz <at> gnu.org> writes:
> > 
> > >> > > This fixes double-free bug in Emacs daemon mode on Haiku. To reproduce:
> > >> > > 
> > >> > > 1. Start emacs with "emacs --daemon"
> > >> > > 2. Create a new frame with "emacsclient -c" and then close it.
> > >> > > 3. Create a new frame with "emacsclient -c"
> > 
> > I think I've fixed this slightly differently.  Please test and ack,
> > thanks.
> 
> Kyle, could you please test the fix and report back?

Thanks for looking into this everybody. I tested your variant of the fix Po and it also prevents the crash for me.




Reply sent to Po Lu <luangruo <at> yahoo.com>:
You have taken responsibility. (Thu, 29 May 2025 00:26:02 GMT) Full text and rfc822 format available.

Notification sent to Kyle Ambroff-Kao <kyle <at> ambroffkao.com>:
bug acknowledged by developer. (Thu, 29 May 2025 00:26:02 GMT) Full text and rfc822 format available.

Message #36 received at 77478-done <at> debbugs.gnu.org (full text, mbox):

From: Po Lu <luangruo <at> yahoo.com>
To: "Kyle Ambroff-Kao" <kyle <at> ambroffkao.com>
Cc: Eli Zaretskii <eliz <at> gnu.org>, 77478-done <at> debbugs.gnu.org
Subject: Re: bug#77478: Fixes a crash in the Haiku font driver for daemon mode
Date: Thu, 29 May 2025 08:25:40 +0800
"Kyle Ambroff-Kao" <kyle <at> ambroffkao.com> writes:

> Thanks for looking into this everybody. I tested your variant of the
> fix Po and it also prevents the crash for me.

Closing, thanks.




Reply sent to Po Lu <luangruo <at> yahoo.com>:
You have taken responsibility. (Thu, 29 May 2025 00:26:02 GMT) Full text and rfc822 format available.

Notification sent to Kyle Ambroff-Kao <kyle <at> ambroffkao.com>:
bug acknowledged by developer. (Thu, 29 May 2025 00:26:02 GMT) Full text and rfc822 format available.

This bug report was last modified 25 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.