Merge pull request #3392 from martin-frbg/lapack625

Fix out of bounds read in ?llarv (Reference-LAPACK PR 625)
This commit is contained in:
Martin Kroeker 2021-10-01 14:56:09 +02:00 committed by GitHub
commit 4f86650979
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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

View File

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