< prev index next >

src/java.base/share/native/libfdlibm/k_standard.c

Print this page
rev 16214 : 8170663: Fix minor issues in corelib and servicabilty coding.
Contributed-by: David CARLIER <devnexen@gmail.com>, goetz.lindenmaier@sap.com
Reviewed-by: dsamersoff

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 1998, 2001, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1998, 2016, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -737,8 +737,10 @@
                     _LIB_VERSION == _POSIX_) exc.retval = 1.0;
                 else if (!matherr(&exc)) {
                         errno = EDOM;
                 }
                 break;
+            default:
+                exc.retval = 0;
         }
         return exc.retval;
 }
< prev index next >