Skip to content

Commit d9ed0b6

Browse files
committed
fix refactor extra count
1 parent 890f0a8 commit d9ed0b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Sep/SepReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ bool EnsureInitializeAndReadData(bool endOfFile)
325325
{
326326
if (nothingLeftToRead)
327327
{
328-
if ((_parsingRowColEndsOrInfosStartIndex + _parsingRowColCount + ColEndsOrInfosExtraEndCount) >= (GetColInfosLength() - ColEndsOrInfosExtraEndCount))
328+
if ((_parsingRowColEndsOrInfosStartIndex + _parsingRowColCount + ColEndsOrInfosExtraEndCount) >= GetColInfosLength())
329329
{
330330
DoubleColInfosCapacityCopyState();
331331
}

0 commit comments

Comments
 (0)