Skip to content

Commit

Permalink
Fix potential bounds error (Reference-LAPACK PR 1018)
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-frbg authored May 23, 2024
1 parent e2c1a1e commit 4dd715d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lapack-netlib/SRC/dorhr_col.f
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ SUBROUTINE DORHR_COL( M, N, NB, A, LDA, T, LDT, D, INFO )
*
JBTEMP2 = JB - 2
DO J = JB, JB+JNB-2
DO I = J-JBTEMP2, NB
DO I = J-JBTEMP2, MIN( NB, N )
T( I, J ) = ZERO
END DO
END DO
Expand All @@ -435,4 +435,4 @@ SUBROUTINE DORHR_COL( M, N, NB, A, LDA, T, LDT, D, INFO )
*
* End of DORHR_COL
*
END
END

0 comments on commit 4dd715d

Please sign in to comment.