From a1702b7646c84f53892a7311458a6f306fa80775 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 10 Oct 2005 15:30:45 +0000 Subject: [PATCH] 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). --- ChangeLog | 7 +++++++ gst/gstiterator.c | 2 ++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 4a2b306..d35481f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2005-10-10 Tim-Philipp Müller + + * 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). + 2005-10-10 Josef Zlomek Reviewed by: Tim-Philipp Müller diff --git a/gst/gstiterator.c b/gst/gstiterator.c index 287ef63..dbbadc4 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); -- 2.7.4