mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-07 01:43:41 +02:00
Fix some leaks in the GVDB builder
This commit is contained in:
@@ -177,6 +177,14 @@ hash_table_new (gint n_buckets)
|
||||
return table;
|
||||
}
|
||||
|
||||
static void
|
||||
hash_table_free (HashTable *table)
|
||||
{
|
||||
g_free (table->buckets);
|
||||
|
||||
g_slice_free (HashTable, table);
|
||||
}
|
||||
|
||||
static void
|
||||
hash_table_insert (gpointer key,
|
||||
gpointer value,
|
||||
@@ -417,6 +425,8 @@ file_builder_add_hash (FileBuilder *fb,
|
||||
index++;
|
||||
}
|
||||
}
|
||||
|
||||
hash_table_free (mytable);
|
||||
}
|
||||
|
||||
static FileBuilder *
|
||||
@@ -472,6 +482,8 @@ file_builder_serialise (FileBuilder *fb,
|
||||
|
||||
g_string_append_len (result, chunk->data, chunk->size);
|
||||
g_free (chunk->data);
|
||||
|
||||
g_slice_free (FileChunk, chunk);
|
||||
}
|
||||
|
||||
g_queue_free (fb->chunks);
|
||||
|
Reference in New Issue
Block a user