summaryrefslogtreecommitdiff
path: root/gst/gstiterator.c
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2005-10-10 15:30:45 +0000
committerTim-Philipp Müller <tim@centricular.net>2005-10-10 15:30:45 +0000
commita1702b7646c84f53892a7311458a6f306fa80775 (patch)
treedcb1294b0b51a8de0555783428e84684d3f85b19 /gst/gstiterator.c
parentee379a13b64836aba3b45ea4d0c88b21eb854845 (diff)
downloadgstreamer-a1702b7646c84f53892a7311458a6f306fa80775.tar.gz
gst/gstiterator.c: Add assertions to make sure passed GType is likely to really be a GType (as the compiler won't cat...
Original commit message from CVS: * gst/gstiterator.c: (gst_iterator_new): Add assertions to make sure passed GType is likely to really be a GType (as the compiler won't catch it if the size and GType arguments get mixed up, see #318447).
Diffstat (limited to 'gst/gstiterator.c')
-rw-r--r--gst/gstiterator.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gst/gstiterator.c b/gst/gstiterator.c
index 287ef63b68..dbbadc469e 100644
--- a/gst/gstiterator.c
+++ b/gst/gstiterator.c
@@ -87,6 +87,8 @@ 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);
g_return_val_if_fail (resync != NULL, NULL);