Skip to content

Commit 3088efc

Browse files
committed
Bug fixed: infinite loop.
1 parent a52ba63 commit 3088efc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CSVexpressions.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1763,7 +1763,7 @@ Private Function GetPowerSymbolPos(ByRef Expression As String) As Long
17631763
tmpPos = GetOPeratorSymbolPos(Expression, op_power)
17641764
Do While tmpPos
17651765
tmpResult = tmpPos
1766-
tmpPos = GetOPeratorSymbolPos(Expression, op_power, tmpPos)
1766+
tmpPos = GetOPeratorSymbolPos(Expression, op_power, tmpPos + 2)
17671767
Loop
17681768
GetPowerSymbolPos = tmpResult
17691769
End Function

0 commit comments

Comments
 (0)