From a032f72b14d8a546adbdb76810861c339c47b086 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 21 Mar 2005 18:17:57 +0000 Subject: [PATCH] gst/gstbus.c: Fix copy-and-paste error. Original commit message from CVS: * gst/gstbus.c: (gst_bus_post): Fix copy-and-paste error. --- ChangeLog | 5 +++++ gst/gstbus.c | 2 -- 2 files changed, 5 insertions(+), 2 deletions(-) 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;