Skip to content

Commit 1d57e38

Browse files
committed
Bug fixed: buffer allowed to restart on invalid values
1 parent e74244f commit 1d57e38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CSVArrayList.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3406,7 +3406,7 @@ End Function
34063406
''' </summary>
34073407
Public Sub Reinitialize(bufferSize As Long)
34083408
Select Case bufferSize
3409-
Case Is >= 0
3409+
Case Is >= 1
34103410
If Not P_INDEXING Then
34113411
CurrentIndex = -1
34123412
MaxIndex = bufferSize - 1

0 commit comments

Comments
 (0)