From b23e9c2364681f4bedeed7b5568d05aecb24cdd0 Mon Sep 17 00:00:00 2001 From: Iain Nicol Date: Thu, 29 Oct 2009 13:56:55 +0000 Subject: Initialize ephy_web_view_get_security_level's output param "description" Partial fix for bug #599757. Signed-off-by: Xan Lopez --- embed/ephy-web-view.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index 0d3be0d8f..4fbfa9859 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -2011,8 +2011,9 @@ ephy_web_view_get_js_status (EphyWebView *view) * @level: return value of security level * @description: return value of the description of the security level * - * Fetches the #EphyWebViewSecurityLevel and a newly-allocated string description - * of the security state of @view. + * Fetches the #EphyWebViewSecurityLevel and a string description of the + * security state of @view. The description will be a newly-allocated + * string or %NULL. **/ void ephy_web_view_get_security_level (EphyWebView *view, @@ -2023,6 +2024,9 @@ ephy_web_view_get_security_level (EphyWebView *view, if (level) *level = view->priv->security_level; + + if (description) + *description = NULL; } /** -- cgit v1.2.3