diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/mythtv/gstmythtvsrc.c | 5 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2007-01-17 Tim-Philipp Müller <tim at centricular dot net> + + * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_set_property): + Use break here instead of goto. + 2007-01-13 Andy Wingo <wingo@pobox.com> * gst/interleave/deinterleave.c (gst_deinterleave_add_new_pads): diff --git a/ext/mythtv/gstmythtvsrc.c b/ext/mythtv/gstmythtvsrc.c index f65bbed7..7894b5a2 100644 --- a/ext/mythtv/gstmythtvsrc.c +++ b/ext/mythtv/gstmythtvsrc.c @@ -1105,7 +1105,7 @@ gst_mythtv_src_set_property (GObject * object, guint prop_id, { if (!g_value_get_string (value)) { GST_WARNING ("location property cannot be NULL"); - goto done; + break; } if (mythtvsrc->uri_name != NULL) { @@ -1147,7 +1147,7 @@ gst_mythtv_src_set_property (GObject * object, guint prop_id, { if (!g_value_get_string (value)) { GST_WARNING ("MythTV Live chainid property cannot be NULL"); - goto done; + break; } if (mythtvsrc->live_chain_id != NULL) { @@ -1167,7 +1167,6 @@ gst_mythtv_src_set_property (GObject * object, guint prop_id, break; } -done: GST_OBJECT_UNLOCK (mythtvsrc); } |