Skip to content

Commit c44070e

Browse files
authored
prevent out of bounds access in local_schurfact! (#150)
1 parent 92f5094 commit c44070e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/schurfact.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ function local_schurfact!(
500500
# iteration count
501501
iter = 0
502502

503-
@inbounds while true
503+
@inbounds while to > start
504504
iter += 1
505505
iter > maxiter && return false
506506

0 commit comments

Comments
 (0)