Fix early bailout

This commit is contained in:
Martin Kroeker 2023-06-27 16:12:27 +02:00 committed by GitHub
parent d6be5036d7
commit 772b0cc715
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ FLOAT CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x, FLOAT *y, BLASLONG inc_y)
BLASLONG i=0, j=0;
double dot = 0.0 ;
if ( n < 0 ) return(dot);
if ( n < 1 ) return(dot);
FLOAT_V_T vr, vx, vy;
unsigned int gvl = 0;