Commit 67ee1d05 authored by Stefan Krah's avatar Stefan Krah

word.digits are always initialized before use in the Taylor series loop,

but this is more readable.
parent 2b6b73e7
......@@ -3989,7 +3989,7 @@ _mpd_qexp(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,
mpd_context_t workctx;
MPD_NEW_STATIC(tmp,0,0,0,0);
MPD_NEW_STATIC(sum,0,0,0,0);
MPD_NEW_CONST(word,0,0,0,1,1,1);
MPD_NEW_CONST(word,0,0,1,1,1,1);
mpd_ssize_t j, n, t;
assert(!mpd_isspecial(a));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment