Skip to content

Commit

Permalink
MS-FSSHTTPB-20231018 (#80)
Browse files Browse the repository at this point in the history
Co-authored-by: vwangjinpeng <[email protected]>
Co-authored-by: Stephen Griffin <[email protected]>
  • Loading branch information
3 people committed Nov 20, 2023
1 parent 8a4a3c1 commit 5308cb7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion FSSHTTPWOPIInspector/Source/Parsers/FSSHTTPB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -431,9 +431,9 @@ public override void Parse(Stream s)
if (this.Count.GetUint(Count) > 0)
{
ulong tempCount = this.Count.GetUint(Count);
StringItem tempGuid = new StringItem();
do
{
StringItem tempGuid = new StringItem();
tempGuid.Parse(s);
tempContent.Add(tempGuid);
tempCount--;
Expand Down Expand Up @@ -3545,6 +3545,8 @@ public class PutChangesRequest : BaseStructure
[BitAttribute(1)]
public byte E;
[BitAttribute(1)]
public byte F;
[BitAttribute(1)]
public byte G;
[BitAttribute(1)]
public byte H;
Expand Down Expand Up @@ -3575,6 +3577,7 @@ public override void Parse(Stream s)
this.C = (byte)GetBits(tempByte, 2, 1);
this.D = (byte)GetBits(tempByte, 3, 1);
this.E = (byte)GetBits(tempByte, 4, 1);
this.F = (byte)GetBits(tempByte, 5, 1);
this.G = (byte)GetBits(tempByte, 6, 1);
this.H = (byte)GetBits(tempByte, 7, 1);

Expand Down

0 comments on commit 5308cb7

Please sign in to comment.