Skip to content

Commit a908c6d

Browse files
authored
Merge pull request #818 from marcin-krystianc/marcink-20200920-size0
DeltaStreamReader should interpret instruction with size 0 as 0x10000
2 parents 4a63c66 + 448dd8c commit a908c6d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/NerdBank.GitVersioning/ManagedGit/DeltaStreamReader.cs

+6
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,12 @@ public static class DeltaStreamReader
8484
{
8585
value.Size |= ((byte)stream.ReadByte() << 16);
8686
}
87+
88+
// Size zero is automatically converted to 0x10000.
89+
if (value.Size == 0)
90+
{
91+
value.Size = 0x10000;
92+
}
8793
}
8894

8995
return value;

0 commit comments

Comments
 (0)