Browse Source

Fix potential bounds error (Reference-LAPACK PR 1018)

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

+ 2
- 2
lapack-netlib/SRC/zunhr_col.f View File

@@ -420,7 +420,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 ) = CZERO
END DO
END DO
@@ -436,4 +436,4 @@
*
* End of ZUNHR_COL
*
END
END

Loading…
Cancel
Save