From 8f3c0789fe233f6c213bdee419179e18c40f84f4 Mon Sep 17 00:00:00 2001 From: Claudio Saavedra Date: Wed, 30 Nov 2011 20:04:36 +0100 Subject: ephy-request-about: fix a potential crasher if the css file is missing And prevent the corresponding GError from leaking. --- embed/ephy-request-about.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/embed/ephy-request-about.c b/embed/ephy-request-about.c index 331442729..0256c8da3 100644 --- a/embed/ephy-request-about.c +++ b/embed/ephy-request-about.c @@ -72,9 +72,12 @@ static void read_css_style (EphyRequestAbout *about) { GError *error = NULL; + const gchar *file = ephy_file ("about.css"); - if (!g_file_get_contents (ephy_file ("about.css"), &about->priv->css_style, NULL, &error)) + if (file && !g_file_get_contents (file, &about->priv->css_style, NULL, &error)) { g_debug ("%s", error->message); + g_error_free (error); + } } static GInputStream * -- cgit v1.2.3