summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/urldb.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/content/urldb.c b/content/urldb.c
index 70f82c519..61c581822 100644
--- a/content/urldb.c
+++ b/content/urldb.c
@@ -730,6 +730,10 @@ bool urldb_add_url(const char *url)
host = components.authority;
else
host++;
+ if (!host) {
+ url_destroy_components(&components);
+ return false;
+ }
/* get port and remove from authority */
colon = strrchr(host, ':');
@@ -754,13 +758,9 @@ bool urldb_add_url(const char *url)
p = urldb_add_path(components.scheme, port, h,
components.path ? components.path : "",
components.query, components.fragment, url);
- if (!p) {
- return false;
- }
url_destroy_components(&components);
-
- return true;
+ return (p != NULL);
}
/**