You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ar...@apache.org on 2008/10/17 16:47:08 UTC

svn commit: r705630 - /incubator/qpid/trunk/qpid/dotnet/client-010/client/transport/network/Assembler.cs

Author: arnaudsimon
Date: Fri Oct 17 07:47:08 2008
New Revision: 705630

URL: http://svn.apache.org/viewvc?rev=705630&view=rev
Log:
qpid-1372: added handling of empty message properties. 

Modified:
    incubator/qpid/trunk/qpid/dotnet/client-010/client/transport/network/Assembler.cs

Modified: incubator/qpid/trunk/qpid/dotnet/client-010/client/transport/network/Assembler.cs
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/dotnet/client-010/client/transport/network/Assembler.cs?rev=705630&r1=705629&r2=705630&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/dotnet/client-010/client/transport/network/Assembler.cs (original)
+++ incubator/qpid/trunk/qpid/dotnet/client-010/client/transport/network/Assembler.cs Fri Oct 17 07:47:08 2008
@@ -211,8 +211,7 @@
                 case SegmentType.HEADER:
                     command = incomplete[channel];
                     List<Struct> structs = new List<Struct>();
-                    //while (decoder.hasRemaining())
-                    for (int i = 0; i < 2; i++ )
+                    while (decoder.hasRemaining())                    
                     {
                         structs.Add(decoder.readStruct32());
                     }