]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix crash in ns_mouse_position (bug#44313)
authorAlan Third <alan@idiocy.org>
Sat, 31 Oct 2020 15:14:34 +0000 (15:14 +0000)
committerAlan Third <alan@idiocy.org>
Mon, 9 Nov 2020 14:49:52 +0000 (14:49 +0000)
* src/nsterm.m (ns_destroy_window): Close the window before freeing
the frame resources so we don't end up accessing the frame struct
after it's been freed.

src/nsterm.m

index fa38350a2f665dd689f6f7f4414f5246390dd01e..4fad521b74c1a68d51d45ceb0f016ffdf92331fa 100644 (file)
@@ -1782,6 +1782,8 @@ ns_destroy_window (struct frame *f)
 {
   NSTRACE ("ns_destroy_window");
 
+  check_window_system (f);
+
   /* If this frame has a parent window, detach it as not doing so can
      cause a crash in GNUStep.  */
   if (FRAME_PARENT_FRAME (f) != NULL)
@@ -1792,7 +1794,7 @@ ns_destroy_window (struct frame *f)
       [parent removeChildWindow: child];
     }
 
-  check_window_system (f);
+  [[FRAME_NS_VIEW (f) window] close];
   ns_free_frame_resources (f);
   ns_window_num--;
 }