mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
msun: use previously ignored value.
This fixes evaluation of exceptional values in scalblnl(). While here, simplify the code as suggested by Bruce Evans. Reported by: clang static analyzer MFC after: 1 week
This commit is contained in:
parent
09a4a1f2d8
commit
311449a4e3
1 changed files with 4 additions and 22 deletions
|
|
@ -35,13 +35,7 @@ scalbln (double x, long n)
|
|||
{
|
||||
int in;
|
||||
|
||||
in = (int)n;
|
||||
if (in != n) {
|
||||
if (n > 0)
|
||||
in = INT_MAX;
|
||||
else
|
||||
in = INT_MIN;
|
||||
}
|
||||
in = (n > INT_MAX) ? INT_MAX : (n < INT_MIN) ? INT_MIN : n;
|
||||
return (scalbn(x, in));
|
||||
}
|
||||
|
||||
|
|
@ -50,13 +44,7 @@ scalblnf (float x, long n)
|
|||
{
|
||||
int in;
|
||||
|
||||
in = (int)n;
|
||||
if (in != n) {
|
||||
if (n > 0)
|
||||
in = INT_MAX;
|
||||
else
|
||||
in = INT_MIN;
|
||||
}
|
||||
in = (n > INT_MAX) ? INT_MAX : (n < INT_MIN) ? INT_MIN : n;
|
||||
return (scalbnf(x, in));
|
||||
}
|
||||
|
||||
|
|
@ -65,12 +53,6 @@ scalblnl (long double x, long n)
|
|||
{
|
||||
int in;
|
||||
|
||||
in = (int)n;
|
||||
if (in != n) {
|
||||
if (n > 0)
|
||||
in = INT_MAX;
|
||||
else
|
||||
in = INT_MIN;
|
||||
}
|
||||
return (scalbnl(x, (int)n));
|
||||
in = (n > INT_MAX) ? INT_MAX : (n < INT_MIN) ? INT_MIN : n;
|
||||
return (scalbnl(x, in));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue