Skip to content

Commit

Permalink
Fix out of bounds read in ?llarv (Reference-LAPACK PR 625)
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-frbg committed Oct 1, 2021
1 parent ddb0ff5 commit 337b651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lapack-netlib/SRC/zlarrv.f
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ SUBROUTINE ZLARRV( N, VL, VU, D, L, PIVMIN,
*
* Quick return if possible
*
IF( N.LE.0 ) THEN
IF( (N.LE.0).OR.(M.LE.0) ) THEN
RETURN
END IF
*
Expand Down

0 comments on commit 337b651

Please sign in to comment.