From: Paweł Forysiuk Date: Thu, 27 Oct 2011 21:19:29 +0000 (+0200) Subject: NULL-check new speed dial titles to avoid "(null)" X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=948301f08604fdc4c41af0fffe763b88ec831660;p=midori NULL-check new speed dial titles to avoid "(null)" --- diff --git a/midori/midori-view.c b/midori/midori-view.c index 457f3643..ae3c727d 100644 --- a/midori/midori-view.c +++ b/midori/midori-view.c @@ -3787,7 +3787,7 @@ prepare_speed_dial_html (MidoriView* view) "" "" "
%s
\n", - slot, slot, uri, encoded, slot, title); + slot, slot, uri, encoded, slot, title ? title : ""); g_free (title); g_free (encoded);