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 authored Oct 1, 2021
1 parent c34e63f commit 2be5ee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lapack-netlib/SRC/clarrv.f
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ SUBROUTINE CLARRV( 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 2be5ee3

Please sign in to comment.