bus: Add guards against invalid arguments to set_flushing() and poll()
[platform/upstream/gstreamer.git] / gst / gstbus.c
index 7865079..fbe2464 100644 (file)
@@ -448,6 +448,8 @@ gst_bus_set_flushing (GstBus * bus, gboolean flushing)
   GstMessage *message;
   GList *message_list = NULL;
 
+  g_return_if_fail (GST_IS_BUS (bus));
+
   GST_OBJECT_LOCK (bus);
 
   if (flushing) {
@@ -1122,6 +1124,8 @@ gst_bus_poll (GstBus * bus, GstMessageType events, GstClockTime timeout)
   GstMessage *ret;
   gulong id;
 
+  g_return_val_if_fail (GST_IS_BUS (bus), NULL);
+
   poll_data = g_slice_new (GstBusPollData);
   poll_data->source_running = TRUE;
   poll_data->loop = g_main_loop_new (NULL, FALSE);