This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, master, updated. glibc-2.10-366-g98363de


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  98363ded87633c2bb91140d115cbd7b449634038 (commit)
      from  823bc6da658301e546c0650104e7428b8c636873 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=98363ded87633c2bb91140d115cbd7b449634038

commit 98363ded87633c2bb91140d115cbd7b449634038
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Tue Oct 27 13:46:08 2009 -0700

    Fix range checks in coshl.

diff --git a/ChangeLog b/ChangeLog
index b88343f..bac4e7a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-10-27  Jakub Jelinek  <jakub@redhat.com>
+
+	[BZ #10817]
+	* math/w_coshl.c (__coshl): Use __finitel instead of __finite.
+	Reported by Ray Chason.
+
 2009-10-21  H.J. Lu  <hongjiu.lu@intel.com>
 
 	* sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
diff --git a/math/w_coshl.c b/math/w_coshl.c
index 5f4623a..52b8d93 100644
--- a/math/w_coshl.c
+++ b/math/w_coshl.c
@@ -38,8 +38,8 @@ static char rcsid[] = "$NetBSD: $";
 	long double z;
 	z = __ieee754_coshl(x);
 	if(_LIB_VERSION == _IEEE_ || __isnanl(x)) return z;
-	if(!__finite(z) && __finite(x)) {
-	        return __kernel_standard(x,x,205); /* cosh overflow */
+	if(!__finitel(z) && __finitel(x)) {
+		return __kernel_standard(x,x,205); /* cosh overflow */
 	} else
 	    return z;
 #endif

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog      |    6 ++++++
 math/w_coshl.c |    4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]