]> git.eshelyaron.com Git - emacs.git/commitdiff
Work around GC+Cairo bug
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 3 Apr 2018 15:24:10 +0000 (08:24 -0700)
committerEli Zaretskii <eliz@gnu.org>
Sat, 5 Jan 2019 09:52:40 +0000 (11:52 +0200)
Workaround suggested by Robert Pluim (Bug#20890#13).
* src/ftfont.c (ftfont_close) [USE_CAIRO]:
Do nothing if GC is in progress.

src/ftfont.c

index 4382fd022119a696e858a257c58fdbd6e0b7a07a..bdb1dff8cb94718bc0c9c47d3e68b49571a56bc4 100644 (file)
@@ -1246,6 +1246,12 @@ ftfont_close (struct font *font)
   /* FIXME: Although this function can be called while garbage-collecting,
      the function assumes that Lisp data structures are properly-formed.
      This invalid assumption can lead to core dumps (Bug#20890).  */
+#ifdef USE_CAIRO
+  /* Although this works around Bug#20890, it is probably not the
+     right thing to do.  */
+  if (gc_in_progress)
+    return;
+#endif
 
   struct ftfont_info *ftfont_info = (struct ftfont_info *) font;
   Lisp_Object val, cache;