From 9d251cdb5461cd368195bb0865947d14dacb4106 Mon Sep 17 00:00:00 2001 From: Ben Adams Date: Thu, 8 Oct 2015 18:13:22 -0400 Subject: [PATCH] subsequent block has data - IsEnd is false Resolves #249 --- .../Infrastructure/MemoryPoolIterator2.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Server.Kestrel/Infrastructure/MemoryPoolIterator2.cs b/src/Microsoft.AspNet.Server.Kestrel/Infrastructure/MemoryPoolIterator2.cs index 994b7d5bbc..a4ec046e58 100644 --- a/src/Microsoft.AspNet.Server.Kestrel/Infrastructure/MemoryPoolIterator2.cs +++ b/src/Microsoft.AspNet.Server.Kestrel/Infrastructure/MemoryPoolIterator2.cs @@ -56,7 +56,7 @@ namespace Microsoft.AspNet.Server.Kestrel.Infrastructure { if (block.Start < block.End) { - return true; + return false; // subsequent block has data - IsEnd is false } block = block.Next; }