Explorar o código

SMB2: IOCtlRequest: OutputOffset field was set incorrectly in some cases

Tal Aloni %!s(int64=7) %!d(string=hai) anos
pai
achega
a71b97a707
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      SMBLibrary/SMB2/Commands/IOCtlRequest.cs

+ 1 - 1
SMBLibrary/SMB2/Commands/IOCtlRequest.cs

@@ -68,7 +68,7 @@ namespace SMBLibrary.SMB2
             }
             if (Output.Length > 0)
             {
-                OutputOffset = InputOffset + (uint)Input.Length;
+                OutputOffset = SMB2Header.Length + FixedLength + (uint)Input.Length;
             }
             LittleEndianWriter.WriteUInt16(buffer, offset + 0, StructureSize);
             LittleEndianWriter.WriteUInt16(buffer, offset + 2, Reserved);