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

This commit is contained in:
Martin Kroeker 2021-10-01 11:18:20 +02:00 committed by GitHub
parent 2be5ee3cca
commit fe497efa05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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