diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2006-10-27 17:03:32 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2006-10-27 17:03:32 +0000 |
commit | 9a31ad3fe7c70714baafd480e480fca05d0c6f28 (patch) | |
tree | e0e9d3b132049f3c40b19de7250aea16ee49db92 /eint.c | |
parent | ab01c674c7d8a056868c8d654c21654f51e974b1 (diff) | |
download | mpfr-9a31ad3fe7c70714baafd480e480fca05d0c6f28.tar.gz |
eint.c: forgot 2 mpfr_clear's.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@4177 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'eint.c')
-rw-r--r-- | eint.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -228,6 +228,8 @@ mpfr_eint (mpfr_ptr y, mpfr_srcptr x, mp_rnd_t rnd) so that the caller can cleanly deal with the problem. */ fprintf (stderr, "MPFR: Error, too large input in mpfr_eint\n"); MPFR_ZIV_FREE (loop); + mpfr_clear (tmp); + mpfr_clear (ump); MPFR_SAVE_EXPO_FREE (expo); MPFR_SET_ERANGE (); MPFR_SET_NAN (y); |