Bug 676147 - infinite loop while parsing double literal
Summary: infinite loop while parsing double literal
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: Fedora
Classification: Fedora
Component: java-1.6.0-openjdk
Version: 14
Hardware: Unspecified
OS: Unspecified
medium
medium
Target Milestone: ---
Assignee: Deepak Bhole
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks: 676148 676149
TreeView+ depends on / blocked
 
Reported: 2011-02-08 23:02 UTC by Siddhesh Poyarekar
Modified: 2015-09-14 00:22 UTC (History)
9 users (show)

Fixed In Version:
Clone Of:
: 676148 (view as bug list)
Environment:
Last Closed: 2011-04-11 18:38:28 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Siddhesh Poyarekar 2011-02-08 23:02:39 UTC
Description of problem:
java hangs when trying to parse the double literal 2.2250738585072012e-308.

Version-Release number of selected component (if applicable):
java-1.6.0-openjdk-1.6.0.0-49.1.9.3.fc14.x86_64

How reproducible:
Always

Steps to Reproduce:
1. 

$ cat > runhang.java
class runhang {
public static void main(String[] args) {
  System.out.println("Test:");
  double d = Double.parseDouble("2.2250738585072012e-308");
  System.out.println("Value: " + d);
 }
}

2.

$ javac runhang.java

3.

$ java runhang
  
Actual results:
Hang

Expected results:
No hang

Additional info:

This is the same as upstream bug:

https://bugs.openjdk.java.net/show_bug.cgi?id=100119

Comment 1 Deepak Bhole 2011-04-11 18:38:28 UTC
Fix is in IcedTea6 1.9.7 which is in F14


Note You need to log in before you can comment on or make changes to this bug.