aboutsummaryrefslogtreecommitdiffstats
path: root/camel/hash-table-utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/hash-table-utils.c')
-rw-r--r--camel/hash-table-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/hash-table-utils.c b/camel/hash-table-utils.c
index fb3743109b..b78ee062a4 100644
--- a/camel/hash-table-utils.c
+++ b/camel/hash-table-utils.c
@@ -35,7 +35,7 @@ void
g_hash_table_generic_free (gpointer key, gpointer value, gpointer user_data)
{
g_free (key);
- if (value) g_free (value);
+ g_free (value);
}