emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 2970d73: Fix segfault in xwidget when there is no title


From: Lars Ingebrigtsen
Subject: master 2970d73: Fix segfault in xwidget when there is no title
Date: Thu, 15 Oct 2020 03:55:43 -0400 (EDT)

branch: master
commit 2970d73a71d3c1dff016e98263c0becd12bf1781
Author: Jeff Walsh <fejfighter@gmail.com>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Fix segfault in xwidget when there is no title
    
    * src/xwidget.c (Fxwidget_webkit_title): Pass emptry string when no
    title is returned (bug#43989).
---
 src/xwidget.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/xwidget.c b/src/xwidget.c
index 154b3e9..e63191e 100644
--- a/src/xwidget.c
+++ b/src/xwidget.c
@@ -793,7 +793,9 @@ DEFUN ("xwidget-webkit-title",
   WEBKIT_FN_INIT ();
 #ifdef USE_GTK
   WebKitWebView *wkwv = WEBKIT_WEB_VIEW (xw->widget_osr);
-  return build_string (webkit_web_view_get_title (wkwv));
+  const gchar *title = webkit_web_view_get_title (wkwv);
+
+  return build_string (title ? title : "");
 #elif defined NS_IMPL_COCOA
   return nsxwidget_webkit_title (xw);
 #endif



reply via email to

[Prev in Thread] Current Thread [Next in Thread]