diff options
Diffstat (limited to 'camel/url-util.c')
-rw-r--r-- | camel/url-util.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/camel/url-util.c b/camel/url-util.c index b0a1f11d2d..a45f6f4962 100644 --- a/camel/url-util.c +++ b/camel/url-util.c @@ -124,12 +124,12 @@ g_url_free (Gurl *url) { g_assert (url); - if (url->protocol) g_free (url->protocol); - if (url->user) g_free (url->user); - if (url->passwd) g_free (url->passwd); - if (url->host) g_free (url->host); - if (url->port) g_free (url->port); - if (url->path) g_free (url->path); + g_free (url->protocol); + g_free (url->user); + g_free (url->passwd); + g_free (url->host); + g_free (url->port); + g_free (url->path); g_free (url); |