mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
tests/check/gst/gstsystemclock.c: Unref some more to make valgrind happy.
Original commit message from CVS: * tests/check/gst/gstsystemclock.c: (GST_START_TEST), (mixed_thread), (mixed_async_cb), (gst_systemclock_suite): Unref some more to make valgrind happy.
This commit is contained in:
parent
94054fc1b7
commit
79e426d5f9
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2007-03-22 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
|
* tests/check/gst/gstsystemclock.c: (GST_START_TEST),
|
||||||
|
(mixed_thread), (mixed_async_cb), (gst_systemclock_suite):
|
||||||
|
Unref some more to make valgrind happy.
|
||||||
|
|
||||||
2007-03-22 Wim Taymans <wim@fluendo.com>
|
2007-03-22 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* gst/gstsystemclock.c: (gst_system_clock_id_wait_jitter_unlocked),
|
* gst/gstsystemclock.c: (gst_system_clock_id_wait_jitter_unlocked),
|
||||||
|
|
|
@ -362,9 +362,9 @@ GST_START_TEST (test_mixed)
|
||||||
fail_unless (info.ret == GST_CLOCK_OK, "clock return was %d", info.ret);
|
fail_unless (info.ret == GST_CLOCK_OK, "clock return was %d", info.ret);
|
||||||
|
|
||||||
gst_clock_id_unschedule (id);
|
gst_clock_id_unschedule (id);
|
||||||
|
gst_clock_id_unref (id);
|
||||||
gst_clock_id_unref (info.id);
|
gst_clock_id_unref (info.id);
|
||||||
gst_object_unref (info.clock);
|
gst_object_unref (info.clock);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_END_TEST Suite * gst_systemclock_suite (void)
|
GST_END_TEST Suite * gst_systemclock_suite (void)
|
||||||
|
|
Loading…
Reference in a new issue