fix leak in the test itself
authorThomas Vander Stichele <thomas@apestaart.org>
Thu, 22 Sep 2005 20:02:11 +0000 (20:02 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Thu, 22 Sep 2005 20:02:11 +0000 (20:02 +0000)
Original commit message from CVS:
fix leak in the test itself

ChangeLog
check/gst/gstvalue.c
tests/check/gst/gstvalue.c

index 34eb6c7..80c7179 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       * check/gst/gstvalue.c: (GST_START_TEST):
+         fix leaks in the test itself
+
 2005-09-22  Wim Taymans  <wim@fluendo.com>
 
        * gst/base/gstbasesink.c: (gst_base_sink_class_init),
index 37c5a3c..4425cd3 100644 (file)
@@ -938,7 +938,9 @@ GST_START_TEST (test_date)
   fail_unless (g_date_compare (date, date2) == 0);
 
   g_date_free (date);
+  g_date_free (date2);
   date = NULL;
+  date2 = NULL;
 
   str = gst_structure_to_string (s);
   gst_structure_free (s);
@@ -961,6 +963,8 @@ GST_START_TEST (test_date)
   fail_unless (g_date_get_day (date) == 22);
   fail_unless (g_date_get_month (date) == 9);
   fail_unless (g_date_get_year (date) == 2005);
+  g_date_free (date);
+  date = NULL;
 
   str = gst_structure_to_string (s);
   gst_structure_free (s);
index 37c5a3c..4425cd3 100644 (file)
@@ -938,7 +938,9 @@ GST_START_TEST (test_date)
   fail_unless (g_date_compare (date, date2) == 0);
 
   g_date_free (date);
+  g_date_free (date2);
   date = NULL;
+  date2 = NULL;
 
   str = gst_structure_to_string (s);
   gst_structure_free (s);
@@ -961,6 +963,8 @@ GST_START_TEST (test_date)
   fail_unless (g_date_get_day (date) == 22);
   fail_unless (g_date_get_month (date) == 9);
   fail_unless (g_date_get_year (date) == 2005);
+  g_date_free (date);
+  date = NULL;
 
   str = gst_structure_to_string (s);
   gst_structure_free (s);