rygel r354 - trunk/src/rygel



Author: zeeshanak
Date: Tue Dec 16 14:31:22 2008
New Revision: 354
URL: http://svn.gnome.org/viewvc/rygel?rev=354&view=rev

Log:
Stream should only end if the abort signal is for it's message.

Modified:
   trunk/src/rygel/rygel-stream.vala

Modified: trunk/src/rygel/rygel-stream.vala
==============================================================================
--- trunk/src/rygel/rygel-stream.vala	(original)
+++ trunk/src/rygel/rygel-stream.vala	Tue Dec 16 14:31:22 2008
@@ -41,7 +41,9 @@
     private void on_request_aborted (Soup.Server        server,
                                      Soup.Message       msg,
                                      Soup.ClientContext client) {
-        this.eos ();
+        // Ignore if message isn't ours
+        if (msg == this.msg)
+            this.eos ();
     }
 
     public void accept () {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]