Fix out of bounds read in ?llarv (Reference-LAPACK PR 625)

This commit is contained in:
Martin Kroeker
2021-10-01 11:17:21 +02:00
committed by GitHub
parent c34e63ff2f
commit 2be5ee3cca

View File

@@ -351,7 +351,7 @@
*
* Quick return if possible
*
IF( N.LE.0 ) THEN
IF( (N.LE.0) .OR. (M.LE.0) ) THEN
RETURN
END IF
*