I#1368 - itip-utils: Use Location as TZID instead of libical's TZID ][

Missed a chunk to free memory in a GHashTable when splitting the change
into multiple commits.

Related to https://gitlab.gnome.org/GNOME/evolution/-/issues/1368
This commit is contained in:
Milan Crha
2021-02-18 14:05:45 +01:00
parent 1ad4a6258d
commit 891a8c74d9

View File

@ -811,7 +811,7 @@ comp_toplevel_with_zones (ICalPropertyMethod method,
prop = i_cal_property_new_method (method);
i_cal_component_take_property (top_level, prop);
tz_data.tzids = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
tz_data.tzids = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
tz_data.icomp = top_level;
tz_data.client = cal_client;
tz_data.zones = zones;