#134 Remove unused fixed buffer.

This commit is contained in:
Chris R 2015-07-28 15:01:08 -07:00
parent 9fdeb09270
commit 2b5206ac18
1 changed files with 10 additions and 13 deletions

View File

@ -247,8 +247,6 @@ namespace Microsoft.Net.Http.Server
uint bytesReturned; uint bytesReturned;
try try
{
fixed (byte* pBuffer = buffer)
{ {
uint flags = 0; uint flags = 0;
@ -262,7 +260,6 @@ namespace Microsoft.Net.Http.Server
out bytesReturned, out bytesReturned,
asyncResult.NativeOverlapped); asyncResult.NativeOverlapped);
} }
}
catch (Exception e) catch (Exception e)
{ {
LogHelper.LogException(_requestContext.Logger, "BeginRead", e); LogHelper.LogException(_requestContext.Logger, "BeginRead", e);