From 14fa7c0262e20d63c8d9872333ba15d7409acef8 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Thu, 17 Apr 2003 19:04:23 +0000 Subject: gcc-2.9x compile fix (c<99) Original commit message from CVS: gcc-2.9x compile fix (c<99) --- gst-libs/gst/play/play.old.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gst-libs/gst/play/play.old.c b/gst-libs/gst/play/play.old.c index 1becf292..cf8b9531 100644 --- a/gst-libs/gst/play/play.old.c +++ b/gst-libs/gst/play/play.old.c @@ -513,9 +513,11 @@ callback_pipeline_state_change ( GstElement *element, static void gst_play_dispose (GObject *object) { + GstPlay *play; + g_return_if_fail (object != NULL); g_return_if_fail (GST_IS_PLAY(object)); - GstPlay *play = GST_PLAY (object); + play = GST_PLAY (object); /* Removing all sources */ while (g_source_remove_by_user_data (play)); -- cgit v1.2.1