Browse Source

Fix potential bounds error (Reference-LAPACK PR 1018)

tags/v0.3.28^2
Martin Kroeker GitHub 2 years ago
parent
commit
791e015024
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lapack-netlib/SRC/sorhr_col.f

+ 1
- 1
lapack-netlib/SRC/sorhr_col.f View File

@@ -419,7 +419,7 @@
*
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


Loading…
Cancel
Save