Update izamin.c

Fix potential uninitialized minf case
This commit is contained in:
Abdelrauf 2017-10-13 19:29:27 +04:00 committed by GitHub
parent def146efed
commit 17b993c0a3
1 changed files with 6 additions and 0 deletions

View File

@ -220,6 +220,12 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
i = n1;
}
else {
//assign minf
minf = CABS1(x,0);
ix += 2;
i++;
}
while(i < n)
{