]> git.eshelyaron.com Git - emacs.git/commitdiff
Prevent crashes on macOS when fullscreen frame is deleted
authorDaniel Martín <mardani29@yahoo.es>
Sun, 18 Jun 2023 22:23:03 +0000 (00:23 +0200)
committerEli Zaretskii <eliz@gnu.org>
Wed, 21 Jun 2023 13:35:27 +0000 (16:35 +0300)
* src/nsterm.m (ns_free_frame_resources): Remove the frame's
window from the hierarchy.  (Bug#64147)

src/nsterm.m

index 8c72bb25df12800c76d2ea54ffd4227c59fd5afa..78089906752e0a0dd717f733abb677846fcfc512 100644 (file)
@@ -1624,7 +1624,7 @@ ns_free_frame_resources (struct frame *f)
     [f->output_data.ns->miniimage release];
 
   [[view window] close];
-  [view release];
+  [view removeFromSuperview];
 
   xfree (f->output_data.ns);
   f->output_data.ns = NULL;