diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-12-08 15:27:44 +0000 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-12-08 15:27:44 +0000 |
commit | 0fbad748e467255cdc67bc9029366e1cee13d4a4 (patch) | |
tree | 14204cc328e35b82090d247edce2355211d75a68 /embed/ephy-embed-shell.c | |
parent | 3c1e4ad57e58f84e702bb2cf8de2ff04f3416d84 (diff) | |
download | epiphany-0fbad748e467255cdc67bc9029366e1cee13d4a4.tar.gz |
Don't use g_return_if_fail for run-time error conditions.
2003-12-08 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-embed-shell.c: (load_mime_from_xml):
Don't use g_return_if_fail for run-time error conditions.
Diffstat (limited to 'embed/ephy-embed-shell.c')
-rw-r--r-- | embed/ephy-embed-shell.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/embed/ephy-embed-shell.c b/embed/ephy-embed-shell.c index 00867ed8b..364eab5e6 100644 --- a/embed/ephy-embed-shell.c +++ b/embed/ephy-embed-shell.c @@ -220,10 +220,18 @@ load_mime_from_xml (EphyEmbedShell *shell) EphyMimePermission permission = EPHY_MIME_PERMISSION_UNKNOWN; xml_file = ephy_file ("mime-types-permissions.xml"); - g_return_if_fail (xml_file != NULL); + if (xml_file == NULL) + { + g_warning ("MIME types permissions file not found!\n"); + return; + } reader = xmlNewTextReaderFilename (xml_file); - g_return_if_fail (reader != NULL); + if (reader == NULL) + { + g_warning ("Could not load MIME types permissions file!\n"); + return; + } ret = xmlTextReaderRead (reader); while (ret == 1) |