mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
Gcc < 3.0 fix
Original commit message from CVS: Gcc < 3.0 fix
This commit is contained in:
parent
75dd6425ed
commit
2c8acd1196
1 changed files with 3 additions and 1 deletions
|
@ -538,9 +538,11 @@ callback_pipeline_state_change ( GstElement *element,
|
||||||
static void
|
static void
|
||||||
gst_play_dispose (GObject *object)
|
gst_play_dispose (GObject *object)
|
||||||
{
|
{
|
||||||
|
GstPlay *play;
|
||||||
|
|
||||||
g_return_if_fail (object != NULL);
|
g_return_if_fail (object != NULL);
|
||||||
g_return_if_fail (GST_IS_PLAY(object));
|
g_return_if_fail (GST_IS_PLAY(object));
|
||||||
GstPlay *play = GST_PLAY (object);
|
play = GST_PLAY (object);
|
||||||
|
|
||||||
/* Removing all sources */
|
/* Removing all sources */
|
||||||
while (g_source_remove_by_user_data (play));
|
while (g_source_remove_by_user_data (play));
|
||||||
|
|
Loading…
Reference in a new issue