diff --git a/ChangeLog b/ChangeLog index 0ab61d5960..cfc6d9db19 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-03-21 Wim Taymans + + * gst/gstbus.c: (gst_bus_post): + Fix copy-and-paste error. + 2005-03-21 Wim Taymans * check/Makefile.am: diff --git a/gst/gstbus.c b/gst/gstbus.c index 7720dd5889..36392b51f1 100644 --- a/gst/gstbus.c +++ b/gst/gstbus.c @@ -229,8 +229,6 @@ gst_bus_post (GstBus * bus, GstMessage * message) g_queue_push_tail (bus->queue, message); g_mutex_unlock (bus->queue_lock); - if (g_queue_get_length (bus->queue) == 0) - need_write = TRUE; if (need_write) { c = 'p'; errno = EAGAIN;