mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 03:29:50 +00:00
gst/gstiterator.c: Fix my previous commit: GTypes passed to gst_iterator_new() can be fundamental types.
Original commit message from CVS: * gst/gstiterator.c: (gst_iterator_new): Fix my previous commit: GTypes passed to gst_iterator_new() can be fundamental types.
This commit is contained in:
parent
63f02ce9ad
commit
29e78cb4b0
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2005-10-10 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/gstiterator.c: (gst_iterator_new):
|
||||
Fix my previous commit: GTypes passed to gst_iterator_new()
|
||||
can be fundamental types.
|
||||
|
||||
2005-10-10 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/gstelement.c: (gst_element_iterate_pad_list),
|
||||
|
|
|
@ -87,7 +87,6 @@ gst_iterator_new (guint size,
|
|||
GstIterator *result;
|
||||
|
||||
g_return_val_if_fail (size >= sizeof (GstIterator), NULL);
|
||||
g_return_val_if_fail (G_TYPE_IS_FUNDAMENTAL (type) == FALSE, NULL);
|
||||
g_return_val_if_fail (g_type_qname (type) != 0, NULL);
|
||||
g_return_val_if_fail (master_cookie != NULL, NULL);
|
||||
g_return_val_if_fail (next != NULL, NULL);
|
||||
|
|
Loading…
Reference in a new issue