From b87a47250466053978bb90c72afb00830ec3fa52 Mon Sep 17 00:00:00 2001 From: Julien Moutte Date: Thu, 17 Apr 2003 10:20:25 +0000 Subject: Changed sanity checks according to BBB feedback Original commit message from CVS: Changed sanity checks according to BBB feedback --- gst-libs/gst/play/play.old.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/play/play.old.c b/gst-libs/gst/play/play.old.c index 895c530f..1becf292 100644 --- a/gst-libs/gst/play/play.old.c +++ b/gst-libs/gst/play/play.old.c @@ -154,8 +154,8 @@ gst_play_set_property ( GObject *object, { GstPlay *play; g_return_if_fail (object != NULL); + g_return_if_fail (GST_IS_PLAY (object)); play = GST_PLAY (object); - g_return_if_fail (GST_IS_PLAY (play)); switch (prop_id) { case ARG_LOCATION: @@ -181,8 +181,8 @@ gst_play_get_property ( GObject *object, { GstPlay *play; g_return_if_fail (object != NULL); + g_return_if_fail (GST_IS_PLAY (object)); play = GST_PLAY (object); - g_return_if_fail (GST_IS_PLAY (play)); switch (prop_id) { case ARG_LOCATION: @@ -513,6 +513,8 @@ callback_pipeline_state_change ( GstElement *element, static void gst_play_dispose (GObject *object) { + g_return_if_fail (object != NULL); + g_return_if_fail (GST_IS_PLAY(object)); GstPlay *play = GST_PLAY (object); /* Removing all sources */ -- cgit v1.2.1