SoupURI* destination = soup_message_get_uri (msg);
if (referer && destination && !strstr (referer, destination->host))
{
- SoupURI* stripped_uri = soup_uri_new (katze_str_non_null (referer));
+ SoupURI* stripped_uri = soup_uri_new (referer);
if (stripped_uri != NULL)
{
gchar* stripped_referer;
- soup_uri_set_path (stripped_uri, NULL);
+ soup_uri_set_path (stripped_uri, "");
soup_uri_set_query (stripped_uri, NULL);
stripped_referer = soup_uri_to_string (stripped_uri, FALSE);
soup_uri_free (stripped_uri);