[dconf: 1/2] Fix some leaks in the GVDB builder



commit 92c22e7ca78670e35df9150169f6837c1dc1d99b
Author: Ryan Lortie <desrt desrt ca>
Date:   Wed Dec 15 11:36:14 2010 -0500

    Fix some leaks in the GVDB builder

 gvdb-builder.c |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)
---
diff --git a/gvdb-builder.c b/gvdb-builder.c
index fdd0ef4..4b48d80 100644
--- a/gvdb-builder.c
+++ b/gvdb-builder.c
@@ -178,6 +178,14 @@ hash_table_new (gint n_buckets)
 }
 
 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,
                    gpointer data)
@@ -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);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]